Kotlin - Control Flow as Expressions
What will be the output of the following Kotlin code?
val x = 3
when (x) {
1, 2 -> println("Small")
in 3..5 -> println("Medium")
else -> println("Large")
}