public static void Main()
Console.WriteLine(" Please input your first name: ");
name = Console.ReadLine();
for (int i = 1; i<=5; i++ )
Console.WriteLine(" I am in the " + i + " part of the loop");
Console.WriteLine(name + " Please input the first number:");
num1=int.Parse( Console.ReadLine());
Console.WriteLine(name + " Please input the second number:");
num2=int.Parse( Console.ReadLine());
Console.WriteLine(name+ " Please enter an operation for me to do (addition, subtraction, division, multipliation):");
operation = Console.ReadLine();
switch(operation.ToLower())
Console.WriteLine(name+ " The sum of " + num1 + " + " + num2 + " is equal to " + addition);
subtraction= num1 - num2;
Console.WriteLine(name+ " The difference of " + num1 + " - " + num2 + " is equal to " + subtraction);
Console.WriteLine(name+ " The quotient of " + num1 + " / " + num2 + " is equal to " + division);
Console.WriteLine(" Your quotient is : " + quotient + " and your remainder is : " + remainder + " !!!!");
Console.WriteLine(num1 + " / " + num2 + " = " + answer1);
multiplication= num1 * num2;
Console.WriteLine(name+ " The product of " + num1 + " x " + num2 + " is equal to " + multiplication);
Console.WriteLine("I did not understand your word!");