name = input("What is your name?") age = int(input("How old are you?")) height = float(input("How tall are you")) if height < 2: unit = ("m") elif height > 3 and height < 7: unit = ("feet") elif height > 50 and height < 200: unit = ("cm") print("Hello", name, "You are", age, "years old, and your height is", height, unit)