Простые типы / Числа / Integer

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

println("b3 is $b3")