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