
public class Pizzaria
{
	public static void main(String[] s)
	{
		Pizza p1 = new Pizza("Pepperoni", 3, 9.99);
		//Pizza p2 = new Pizza("Sausage", 4, 12.99);
		Pizza p2 = new Pizza("Saussage");
		
		System.out.println("Price for 1st=" + p1.getPrice());
		System.out.println("Name of 2ns = " + p2.getName());
		System.out.println("Price for 1st=" + p2.getPrice());
		
		p1.setPrice( p1.getPrice() + 2.00);
		p2.setPrice(14.99);
		System.out.println("Price for 1st=" + p1.getPrice());

	}
}