public static void Main()
Console.WriteLine("((A))");
int adult,child,a,c, Totaladult,totalchld,ovralltotal;
Console.WriteLine(" Enter the adult meal ordered");
adult = Convert.ToInt32(Console.ReadLine());
Console.WriteLine(" Enter the No.of childs Meal ordered");
child = Convert.ToInt32(Console.ReadLine());
ovralltotal = Totaladult+totalchld;
Console.WriteLine(" Total money collected for adults meal:" + Totaladult);
Console.WriteLine(" Total Money Collected for Childrens Meal:" + totalchld);
Console.WriteLine(" OVERALL TOTAL:" + ovralltotal);
Console.WriteLine("_______________");
Console.WriteLine("(B)");
double toprofit_adult,toprofit_child,total_profit;
toprofit_adult = 2.65*adult;
toprofit_child = 0.9*child;
total_profit = toprofit_adult + toprofit_child;
Console.WriteLine("Total profit for adult meal:" + toprofit_adult);
Console.WriteLine("Tot profit for children meal:" + toprofit_child);
Console.WriteLine(" Total profit:" + total_profit);