public static void Main()
Console.WriteLine("this is a programme that tells you if the answer of 2 numbers multiply is under 20");
Console.WriteLine("enter the first number");
N1 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("enter the second number");
N2 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("the answer is; " + Total);
Console.WriteLine("both number has to be under 20");