Not in range

Report a typo

Read an Int number. Write a program that prints false if this number is between 1 and 10 (inclusive), and true otherwise.

Sample Input 1:

5

Sample Output 1:

false

Sample Input 2:

0

Sample Output 2:

true
Write a program in Kotlin
fun main() {
// write your code here

}
___

Create a free account to access the full topic