public class Main {
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:");