2886.Pangram

Time Limit: 1s Memory Limit: 256MB

A word or a sentence in some language is called a pangram if all the characters of the alphabet of this language appear in it at least once. Pangrams are often used to demonstrate fonts in printing or test the output devices.

You are given a string consisting of lowercase and uppercase Latin letters. Check whether this string is a pangram. We say that the string contains a letter of the Latin alphabet if this letter occurs in the string in uppercase or lowercase.

Input Format(From the terminal/stdin)

The first line contains a single integer n (1 \le n \le 100)- the number of characters in the string.

The second line contains the string. The string consists only of uppercase and lowercase Latin letters.

Output Format(To the terminal/stdout)

Output "YES", if the string is a pangram and "NO" otherwise.

Sample Input 1

Copy
12
toosmallword
  \n
            \n

Sample Output 1

Copy
NO
  \n

Sample Input 2

Copy
35
TheQuickBrownFoxJumpsOverTheLazyDog
  \n
                                   \n

Sample Output 2

Copy
YES
   \n

Submit

请先 登录

© 2025 FAQs