Console.WriteLine("What is the first of your two favourite numbers?")
Number = Console.ReadLine()
Console.WriteLine("And the second?")
Number1 = Console.ReadLine()
Console.WriteLine("Would you like to add, subtract, multiply or divide?")
Answer = Console.ReadLine()
Console.WriteLine("The final result of the calculation of your two numbers is " & sum)
If Answer = "subtract" Then
Console.WriteLine("The final result of the calculation of your two numbers is " & sum)
If Answer = "multiply" Then
Console.WriteLine("The final result of the calculation of your two numbers is " & sum)
Console.WriteLine("The final result of the calculation of your two numbers is " & sum)