using System;
public class Program
{
public static void Main()
//200 random dice rolls
for(int i=0;i<200;i++)
Console.WriteLine(GetRandom() % 6 + 1);
}
private static ulong seed = 123;
public static ulong GetRandom()
seed ^= seed << 13;
seed ^= seed >> 7;
seed ^= seed << 17;
return seed;