#include <stdio.h>

main()
{
  srand(time(0));
  printf("rolling a %d\n", rand()%6+1);
}
