Dim Total As String = "0"
Console.WriteLine("How many numbers are you adding?")
Console.WriteLine("Enter a number")
Console.WriteLine("The total is " & Total)
Console.WriteLine("Do you want to go again? (y/n)")
Again = Console.ReadLine()
Console.WriteLine("How many numbers are you subtracting?")
Console.WriteLine("What's the starting number?")
Total = Console.ReadLine()
Console.WriteLine("Enter a number (Don't use a minus symbol)")
Console.WriteLine("The total is " & Total)
Console.WriteLine("Do you want to go again? (y/n)")
Again = Console.ReadLine()
Console.WriteLine("How many numbers are you multiplying?")
Console.WriteLine("Enter a number")
Console.WriteLine("The total is " & Total)
Console.WriteLine("Do you want to go again? (y/n)")
Again = Console.ReadLine()
Console.WriteLine("What's the starting number?")
Total = Console.ReadLine()
Console.WriteLine("How many numbers are you dividing?")
Console.WriteLine("Enter a number")
Console.WriteLine("The total is " & Total)
Console.WriteLine("Do you want to go again? (y/n)")
Again = Console.ReadLine()
Console.WriteLine("Welcome to the overcomplicated calculator!")
Console.WriteLine("What mathemetic method do you want to use?")
Console.WriteLine("1)Adding 2)Subtracting 3)Multiplying 4)Dividing")
Method = Console.ReadLine()
Console.WriteLine("Goodbye")