//no range checkbyte b1 = (byte)200;byte b2 = 100;byte b3 = (byte)(b1 + b2);//b3 is 44 (300 - 256)System.out.println("b3 = " + b3);