public static void Main()
double sum, subtraction, product, division;
Console.WriteLine("The sum of " + a + " and " + b + " is: " +sum);
Console.WriteLine(d + " minus " + b + " is: " +subtraction);
Console.WriteLine("The product of " + b + " and " + c + " is: " +product);
Console.WriteLine("The division of " + d + " by " + b + " is: " +division);
Console.WriteLine("The sum of " + c + " and " + d + " is: " +sum);
Console.WriteLine("Hey! Write a number");
a = int.Parse(Console.ReadLine());
Console.WriteLine("Write another number, please");
d = double.Parse(Console.ReadLine());
Console.WriteLine("The sum of " + a + " and " + d + " is: " +sum);