简单类型 / 数字 / Integer

//no range check
val b1 = 200
val b2 = 100
val b3 = (b1 + b2).toByte()
//b3 is 44 (300 - 256)

println("b3 is $b3")