#!/usr/bin/python3
def main():
    if float(x) <= 1.40:
            print("Too short")
    elif float(x) <= 1.72:
            print("Short")
    elif float(x) <= 1.80:
            print("Normal")
    elif float(x) <= 1.95:
            print("Tall")
    elif float(x) <= 2.05:
            print("Too tall")
    else:
            print("Wrong input")

print("Enter the height:")
x= input()
print("The given height is: " + str(x))
main()
