简单类型 / 数字 / Integer

//no range check
Byte b1 = 200;
Byte b2 = 100;
Byte b3 = b1 + b2;
//b3 is 44 (300 - 256)