• + 0 comments
    print('pangram' if 26==len(set(input().lower().replace(' ',''))) else 'not pangram')