public static void Main()
Console.WriteLine("Please enter a decimal value");
vNum1 = decimal.Parse(Console.ReadLine());
Console.WriteLine("Please enter another decimal value");
vNum2 = decimal.Parse(Console.ReadLine());
Console.WriteLine("This program performs four maths functions on the first two numbers, then multiply the result by the third number.");