public class Lab03{	public static void main (String[] args)	{		Bottle		bottle1, bottle2;		/*	Part III		Monster		troll1, troll2, orc1;		*/				bottle1 = new Bottle("Sprite", 3);		bottle2 = new Bottle("Water", 4);				bottle1.drink();		bottle1.drink();		bottle2.drink();				/*	Part II		bottle1.lookAt();		bottle2.lookAt();				bottle1.drink();		bottle1.drink();		bottle2.drink();				bottle1.lookAt();		bottle2.lookAt();		*/			}}