public static void Main()
Random rnd = new Random();
int player = rnd.Next(2);
chipsTurn = rnd.Next(1, 3);
Console.WriteLine("The computer takes {0} chips", chipsTurn);
Console.WriteLine("Chips left on table: " + chips);
Console.WriteLine("Take 1 2 or 3 chips ");
chipsTurn = int.Parse(Console.ReadLine());
if (chipsTurn >0 && chipsTurn <4 && chipsTurn<=chips)
Console.WriteLine("Wrong Input!!");
Console.WriteLine("There are {0} chips left on the table\n\n", chips);
chipsTurn = rnd.Next(1, 3);
Console.WriteLine("computer takes {0} chips", chipsTurn);
Console.WriteLine("There are {0} chips left on the table\n\n", chips);
Console.WriteLine("Congrats! You won.");
Console.WriteLine("You lost.");