The secret is inside the spell?

Report a typo

Harry Potter is trying to solve a new challenge and obtain the magic power of the Goblet of Fire. He must discover the secret spell in the words of a scroll. To do that, he must find the first word with more than seven characters in it.
What is the spell to open the door?

Sample Input 1:

expetum patronus Axio lithigum madriketom

Sample Output 1:

patronus
Write a program in Kotlin
/* Do not change code below */
fun main() {
val list = readln().split(" ")
// write your code here
val res =


println(res)
}
___

Create a free account to access the full topic