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