• + 0 comments

    s=input().lower() import string for i in string.ascii_lowercase: if i not in s: print('not pangram') break else: print('pangram')