public static void Main()
Console.WriteLine("What was the total price of your meal?");
meal = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Would you like to give a tip?");
tip = Console.ReadLine().ToLower();
tipRecieved = (meal/12) + meal;
final = Math.Round(tipRecieved);
Console.WriteLine("Your final price comes to £" + final);
Console.WriteLine("Your total is £" + meal);