Every number is even

Report a typo

You are given a list of numbers. You must check if every number is even and less than or equal to 20.

Sample Input 1:

2 4 8 22

Sample Output 1:

false
Write a program in Kotlin
fun main() {
val list = readln().split(" ").map { it.toInt() }
// write your code here
val res =


println(res)
}
___

Create a free account to access the full topic