/************************************************
 * This application will allow us to play with operators
 * and other fun things in class
 *
 * @author Nancy Harris
 * @version V1 - 09/11/07
 ************************************************/
public class Play
{
	/***********************************************
	 * Main method-entry point into the program
	 *
	 * @param args - unused in this program
	 ***********************************************/
	public static void main(String args [])
	{
		int freeze;
		int boil;
		
		freeze = 32;
		boil = 212;
		
		freeze = 0;
		boil = 100;
		
		System.out.println(freeze + "\n" + boil + "\n");
		
		/* 22222 *********************************************
		
		int x;
		int y;
		
		x = 0;
		y = 2;
		
		x = y * 4;
		System.out.println(x + "\n" + y + "\n");
		
		*/
		
		 
		 System.out.print("I am the incredible");
		 System.out.print("computing\nmachine");
		 System.out.print("\nand I will \namaze\n");
		 System.out.print("you.");
		
			 System.out.print("Be careful\n)";
		 System.out.print("this might /n by a trick ");
		 System.out.print("question."); 		 
		  int a;
		  int x;
		  
		  x = 23;
		  a = x % 2;
		  
		  System.out.println(x + "\n" + a);
		  
		  //System.out.println(2 % 5);
		  */
	}
}