while True:
    try:
        c = input()
        if str.isalpha(c):
            print('{} is an alphabet.'.format(c))
        else:
            print('{} is not an alphabet.'.format(c))
    except EOFError:
        break