public static void Main()
Random rando = new Random();
bool playerTurn = rando.Next(2) == 0;
Console.WriteLine("Player 1's turn:");
Console.WriteLine("Please pick up to 3 chips");
aiPick = int.Parse(Console.ReadLine());
Console.WriteLine("Player 1 picked {0} chips! There are {1} left.",
aiPick = rando.Next(3)+1;
Console.WriteLine("The AI picked {0} chips! There are {1} left.",
playerTurn = !playerTurn;
Console.WriteLine("Congrats! You win");
aiPick = rando.Next(3)+1;