name = input( "What is your name?" ) age = int( input( "What is your age in years?" ) ) height = float( input( "What is your height in meters?" ) ) print("Hello", name, "You are", age, "years old, and your height is", height)