public void Main(string[] args)
string[] foods={"[]Choco-flavored Champorado-10.00","[]Ginataang Gata-15.00","[]Chicken Kae-Kare-30.00","[]Rice-10","[]Drinks Coke,Sprite,Royal-15.00","\n[0]checkout and place order"};
Console.WriteLine("***Menu of the day***\nSELECT THE PRICE ONLY\n");
for(int index=0; index<foods.Length; index++)
Console.WriteLine("{0}",foods[index]);
Console.Write("Enter num#:");
int firstNum = Convert.ToInt32( Console.ReadLine() );
Console.Write("Enter num#:");
int secondNum = Convert.ToInt32( Console.ReadLine() );
Console.Write("Enter num# to checkout:");
int thirdNum = Convert.ToInt32( Console.ReadLine() );
total =firstNum+secondNum;
Console.WriteLine("Please pay {0}.00",total);