Beyond the word

Report a typo

Write a program that reads a word and prints all the alphabet letters that are not used in this word.

Only lowercase letters are counted.

Sample Input 1:

hello

Sample Output 1:

abcdfgijkmnpqrstuvwxyz

Sample Input 2:

kotlin

Sample Output 2:

abcdefghjmpqrsuvwxyz
Write a program in Kotlin
fun main() {
// put your code here
}
___

Create a free account to access the full topic