public static void Main()
Random rng = new Random();
int randomNumber = rng.Next(1,3);
Console.WriteLine("Rock, Paper, or Scissors?");
string move1 = Console.ReadLine();
else if (randomNumber == 2)
else if (randomNumber == 3)
if (move1 == "Rock" && move2 == "Rock")
Console.WriteLine("Activating Self Destruct Sequence.");
if (move1 == "Rock" && move2 == "Paper")
Console.WriteLine("Computer Victory");
if (move1 == "Rock" && move2 == "Scissors")
Console.WriteLine("Human Victory");
if (move1 == "Paper" && move2 == "Paper")
Console.WriteLine("Activating Self Destruct Sequence.");
if (move1 == "Paper" && move2 == "Rock")
Console.WriteLine("Human victory.");
if (move1 == "Paper" && move2 == "Scissors")
Console.WriteLine("Paper victory.");
if (move1 == "Scissors" && move2 == "Scissors")
Console.WriteLine("Activating Self Destruct Sequence.");
if (move1 == "Scissors" && move2 == "Rock")
Console.WriteLine("Computer Victory.");
if (move1 == "Scissors" && move2 == "Paper")
Console.WriteLine("Human victory.");