Dim attempt As Integer = 0
Console.WriteLine("What is the Capital city of Germany?")
guess = console.ReadLine()
Loop Until attempt = 3 Or guess = "Berlin"
If guess.ToLower() = "Berlin" Then
Console.WriteLine("Nice work, you got the answer correct!")
Console.WriteLine("You ran out of attempts, get better at geography!")