public static void Main()
Console.WriteLine(" HELLO I am CARLO NIÑO ANGELO D. WACAN:)");
Console.WriteLine("SIMPLE CALCULATOR");
Console.WriteLine(" Enter the Number Here: ");
firstNum = Convert.ToInt32(Console.ReadLine());
Console.WriteLine(" Enter the Second Number Here: ");
secondNum = Convert.ToInt32(Console.ReadLine());
Console.WriteLine(" OPERATORS \n (x, +, -, /,)");
operation = Console.ReadLine();
answer = firstNum * secondNum;
Console.WriteLine(firstNum + " x " + secondNum + " = " + answer);
else if (operation == "/")
answer = firstNum / secondNum;
Console.WriteLine(firstNum + " / " + secondNum + " = " + answer);
else if (operation == "+")
answer = firstNum + secondNum;
Console.WriteLine(firstNum + " + " + secondNum + " = " + answer);
else if (operation == "-")
answer = firstNum - secondNum;
Console.WriteLine(firstNum + " - " + secondNum + " = " + answer);