#C9933. Check If Pangram

    ID: 54081 Type: Default 1000ms 256MiB

Check If Pangram

Check If Pangram

Given a string \( S \), determine whether it is a pangram. A pangram is a sentence that contains every letter of the English alphabet \( \{A, B, \ldots, Z\} \) at least once.

In formal terms, let \( L = \{A, B, \ldots, Z\} \) be the set of all uppercase English letters. Let \( U(S) \) be the set of letters present in \( S \) (ignoring case). The answer is "Yes" if \( L \subseteq U(S) \), otherwise the answer is "No".

inputFormat

The input consists of a single line containing a non-empty string \( S \). The string may include letters, digits, and special characters. Note that the letters can be in either uppercase or lowercase.

outputFormat

Output a single word: "Yes" if the string is a pangram (i.e. the string contains every letter of the English alphabet at least once), and "No" otherwise.

## sample
THEQUICKBROWNFOXJUMPSOVERTHELAZYDOG
Yes