I'm writing a program that lets you input two numbers and gives you all the math answers for it. So like multiplication, division, etc. Problem is when I run it, it asks for the input and then it just shows all the operator strings but empty and then ends there.
I tried making an array and then setting that equal to the operators in the Console.WriteLines but that didn't work.
static void Main(string[] args)
{
Console.WriteLine("Input any two numbers.");
var number1 = int.Parse(Console.ReadLine());
var number2 = int.Parse(Console.ReadLine());
Console.WriteLine("Addition: ", + (number1 + number2));
Console.WriteLine("Division: ", + (number1 / number2));
Console.WriteLine("Subtraction: ", + (number1 - number2));
Console.WriteLine("Multiplication: ", + (number1 * number2));
}