public class Overflow {
	public static void main(String[] args) {
		byte myByte = 127;
		System.out.println("myByte = "+myByte);
		myByte++;
		System.out.println("myByte = "+myByte);
	} //main()
} //class Overflow