The secret is in the length

Report a typo

We have a list of words, and we must verify that each word is longer than 4 characters.

Sample Input 1:

dog mom dad peter

Sample Output 1:

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


println(res)
}
___

Create a free account to access the full topic