name = input("What is your name? ") print("Hello", name) age = input ("How old are you? ") print("You are:", age) height = float( input("How tall are you? " ) ) print("Your height is:", height) print("Hello", name, "you are", age, "years old, and your height is", height )