Console.WriteLine("Please enter the first amount raised.")
amount1= console.readline()
Console.writeline("Please enter the second amount raised.")
amount2= Console.readline()
Console.writeline("Please enter the third amount raised.")
amount3= Console.readline()
Answer = amount1 + amount2 + amount3
Console.writeline("The total amount raised will be £" & Answer)
Console.writeline("This will be doubled to £" & doubled)