public static void Main()
Console.Write("Bhone Aparicio's Simple Calculator");
Console.WriteLine("Enter your first value");
firstnum = int.Parse(Console.ReadLine());
Console.WriteLine("Enter your second value");
secondnum = int.Parse(Console.ReadLine());
Console.WriteLine("Enter your desired operation for the equation ( + , -, *, / )");
operation = Console.ReadLine();
Console.WriteLine("The answer is " + (firstnum + secondnum));
else if (operation == "-")
Console.WriteLine("The answer is " + (firstnum - secondnum));
else if (operation == "*")
Console.WriteLine("The answer is " + (firstnum * secondnum));
else if (operation == "/")
Console.WriteLine("The asnwer is " + (firstnum / secondnum));
Console.WriteLine("Sorry, that is not the correct format, Please try again");