static void Main(string[] args)
Console.WriteLine("Please input your name:");
name = Console.ReadLine();
Random randoms = new Random();
rand = randoms.Next(0, 2);
Console.WriteLine("rand is " +rand);
Console.WriteLine(name + ", 0 is for Heads and 1 is for tails");
Console.WriteLine(name + ", please guess Heads or Tails by selecting 0 for heads and 1 for Tails!");
choice = int.Parse(Console.ReadLine());
Console.WriteLine(name + ", you got it!!!!!");
Console.WriteLine(name + ", Sorry!!!!!!");