while 1: try: n = input() print(f'{n} is an alphabet.') if n.isalpha() else print(f'{n} is not an alphabet.') except: break