using System.Collections;
public static void Main()
Console.WriteLine("Asador Etxebarri");
for (int i = 0; i <= 99; i++){
Console.WriteLine("Type 'O' to ORDER or type 'R' to RECEIVE the order");
Console.WriteLine("current order:");
String answer = Console.ReadLine();
if (answer == "O" || answer == "o"){
cashier.Enqueue("P100" + i);
else if (answer == "R" || answer == "r"){
Console.WriteLine("Invalid input");
Console.WriteLine("No orders yet");
foreach (var order in cashier){
Console.WriteLine(order);