public static void main(String[] args) {
PizzaStore ny = new NYPizzaStore();
Pizza cheese1 = ny.orderPizza("cheese");
PizzaStore chicago = new ChicagoPizzaStore();
Pizza cheese2 = chicago.orderPizza("cheese");
System.out.println("This is what you eat in NY when you order a cheese pizza:");
System.out.println(cheese1);
System.out.println("\nwhile you would eat this in Chicago instead:");