Who is less than 10?

Report a typo

Write a program that reads a value and checks whether this value is less than 10.

Sample Input 1:

5

Sample Output 1:

true

Sample Input 2:

11

Sample Output 2:

false
Write a program in Kotlin
fun main() {
// put your code here
}
___

Create a free account to access the full topic