15 lines
190 B
Python
15 lines
190 B
Python
|
import string
|
||
|
|
||
|
n = input()
|
||
|
s = input().lower()
|
||
|
|
||
|
check = True
|
||
|
for i in string.ascii_lowercase:
|
||
|
if s.count(i) == 0:
|
||
|
check = False
|
||
|
|
||
|
if check:
|
||
|
print("YES")
|
||
|
else:
|
||
|
print("NO")
|