The secret is inside the spell?

Report a typo

Harry Potter is trying to solve a challenge to prevent Voldermort from taking over the Deathly Hallows. He must discover the secret spell in the words of a scroll. To do that, he must combine the final characters of each word into a single spell word.

What is the code to open the door?

Sample Input 1:

expetum axio alithigum

Sample Output 1:

mom
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