static void Main(string[] args)
        {
            string[] ingredients      = Console.ReadLine().Split();
            int      ingredientLength = int.Parse(Console.ReadLine());

            Pizza pizza = new Pizza();

            pizza.AddValidIngredients(ingredients, ingredientLength);

            Pizza.Present(pizza);
        }