public static void Main()
Console.WriteLine("Enter the first Number");
N1=Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter the second Number");
N2=Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Enter the option-1=Add 2=subtract 3=times 4=divide");
option=Convert.ToInt32(Console.ReadLine());
Console.WriteLine("the result is: "+Total);