/*
2013-08-29
You Do It - Integer Demo Pg64
Bradley Forney
CIS 127
Professor: Craig Sharp
*/

public class IntegerDemo
{
	public static void main(String[] arg)
	{
		//Initialize Variables
		int anInt	=1234;
		byte aByte	=12;
		short aShort=12345;
		long aLong	=123467890987654321L;
		
		//Out of range Variable
		int anotherInt = (anInt *10000000);
		
		//Output
		System.out.println("The int is   "+anInt);
		System.out.println("The byte is  "+aByte);
		System.out.println("The short is "+aShort);
		System.out.println("The long is  "+aLong);
		System.out.println("Another int is " + anotherInt);
	}
}