public class ByteExample {
	public static void main(String[] args)
	{
		byte x = 126;
		System.out.println("x="+x);
		
		byte y = (byte)(x + 1);
		System.out.println("y="+y);
		
		byte z = (byte)(y + 1);
		System.out.println("z="+z);
	} // main
} // ByteExample