console.WriteLine("How much money do you have now? (GBP)")
console.WriteLine("How much interest do you recieve (in percentage)?")
interest = console.ReadLine()
console.WriteLine("How much money do you want (GBP) ?")
target = console.ReadLine()
money = money * (interest / 100 + 1)
console.WriteLine("Year " & year & ": Your balance is £" & money & ".")
loop until money >= target