using System;
public class Program
{
public static void Main()
//Random rnd = new Random();
bool intent;
string answer;
int product = 0;
int recieved = 0;
/*
Console.WriteLine("Would You Like to Play?");
answer = Console.ReadLine();
switch (answer.ToLower())
case "yes":
case "y":
intent = true;
break;
case "no":
case "n":
intent = false;
}
*/
while (recieved == product);
int one = 1;
int two = 2;
Console.WriteLine("What is " + one + " times " + two + "?");
recieved = int.Parse(Console.ReadLine());
product = one * two;