public static void Main()
Console.WriteLine("Do you want chicken, beef, or veggie burger?");
string sw = Console.ReadLine();
Console.WriteLine("Your sandwhich is chicken.");
Console.WriteLine("Your sandwhich is beef.");
Console.WriteLine("Your sandwhich is veggie.");
Console.WriteLine("Must be chicken, beef, or veggie burger.");
Console.WriteLine("Is this what you want?");
string r = Console.ReadLine();
Console.WriteLine("Good");
Console.WriteLine("Sucks, I can't fix it");
Console.WriteLine("Do you want a beverage?");
string b = Console.ReadLine();
Console.WriteLine("What size would you like? Small, medium, or large?");
string size = Console.ReadLine();
Console.WriteLine("The price is $1.50");
Console.WriteLine("The price is $2.00");
Console.WriteLine("The price is $2.25");
Console.WriteLine("must be size small, medium, or large?");
Console.WriteLine("Is this what you want?");
string r1 = Console.ReadLine();
Console.WriteLine("Good");
Console.WriteLine("Sucks, I can't fix it");
Console.WriteLine("Do you want a fries?");
string f = Console.ReadLine();
Console.WriteLine("What size would you like? Small, medium, or large?");
string size = Console.ReadLine();
Console.WriteLine("Do you want mega?");
string r2 = Console.ReadLine();
Console.WriteLine("The price is $2.50");
Console.WriteLine("The price is $1.50");
Console.WriteLine("The price is $2.00");
Console.WriteLine("The price is $2.50");
Console.WriteLine("Must be size small, medium, or large?");
Console.WriteLine("Is this what you want?");
string r3 = Console.ReadLine();
Console.WriteLine("Good");
Console.WriteLine("Sucks, I can't fix it");
if((b=="yes")&&(f=="yes")&&((s=="chicken")||(s=="beef")||(s=="veggie"))){
Console.WriteLine("Because you ordered a meal of a sandwhich, fries, and beverage you get $1 off.");
string reciept = "Your sandwhich was "+s+", your beverage size is "+bs+", your fry size is "+fs;
Console.WriteLine(reciept);
Console.WriteLine($"Your amount is {amt:c}");
Console.WriteLine("Please pay now. Disregard the dollar sign when paying");
string paidAmt = Console.ReadLine();
bool success = double.TryParse(paidAmt, out pa);
Console.WriteLine($"Thank you for paying, your total was {amt:c}, your discount was {discount:c}, here is your change {change:c}, Here's your reciept: {reciept}");
Console.WriteLine("You need to pay with money, disregard the dollar sign when paying, you also may not have paid enough.");