static void Main(string[] args) { BeverageWithCoffeine coffe = new Coffe(); BeverageWithCoffeine tea = new Tea(); coffe.BrewingRecipe(); Console.WriteLine(); tea.BrewingRecipe(); Console.ReadKey(); }