tile = input("Enter a Scrabble tile:")
if len(tile) > 1:
    print("That is not a tile!")
else:
    if tile not in 'qxjkz':
        print("That is... a lesser tile")
    else:
        print("That is a tile of great value!")