Dim Interest, Balance, Years As Integer
Console.WriteLine("What is the your interest rate? --- decimal, e.g '5' = '0.05")
Interest = Console.ReadLine()
Else if Interest >= 1 Then
Interest = Interest / 100
Console.WriteLine("What is the your balance? --- 5' = '£5'")
Balance = Console.ReadLine()
Console.WriteLine("How many years should pass? --- '5' = '5 years'")
Years = Console.ReadLine()
Balance = Balance + (Balance*Interest)
Console.WriteLine(Balance)