public static void Main()
    {
        Shop shop = new Shop();
        StringBuilder programResult = new StringBuilder();
        string command = Console.ReadLine();
        while (command != "End")
        {
            string commandResult = shop.ProcessCommand(command);
            programResult.AppendLine(commandResult);
            command = Console.ReadLine();
        }

        Console.WriteLine(programResult.ToString().TrimEnd());
    }