newton/solutions/pangram.py

15 lines
190 B
Python
Raw Normal View History

2025-01-11 11:41:29 +00:00
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")