T6. Less often than others
Very easy
Execution time limit is 1 second
Runtime memory usage limit is 64 megabytes
Given a non-empty string composed solely of letters from the Latin alphabet, identify the letter that occurs the least frequently. Treat uppercase and lowercase letters as equivalent. If there is a tie, select the letter that appears later in the alphabet. Present your answer in uppercase.
Constraints
The input string's length will not exceed 100 characters.
Input Format
The input consists of a single line containing the string.
Output Format
Output a single line with the solution to the problem.
Examples
Input #1
Answer #1
Input #2
Answer #2
Submissions 393
Acceptance rate 55%