#abc071b. [abc071_b]Not Found

[abc071_b]Not Found

Problem Statement

You are given a string SS consisting of lowercase English letters. Find the lexicographically (alphabetically) smallest lowercase English letter that does not occur in SS. If every lowercase English letter occurs in SS, print None instead.

Constraints

  • 1leqSleq1051 \\leq |S| \\leq 10^5 (S|S| is the length of string SS.)
  • SS consists of lowercase English letters.

Input

Input is given from Standard Input in the following format:

SS

Output

Print the lexicographically smallest lowercase English letter that does not occur in SS. If every lowercase English letter occurs in SS, print None instead.


Sample Input 1

atcoderregularcontest

Sample Output 1

b

The string atcoderregularcontest contains a, but does not contain b.


Sample Input 2

abcdefghijklmnopqrstuvwxyz

Sample Output 2

None

This string contains every lowercase English letter.


Sample Input 3

fajsonlslfepbjtsaayxbymeskptcumtwrmkkinjxnnucagfrg

Sample Output 3

d