name = input( "What is your name? " )
print( "Hello" , name)

age = input( "How old are you? " )
print( "You're" , age )

height = input( "What's your height? " )
print( "Alright, you're" , height )

print( "Hello" , name , "You are" , age , "and your height is" , height )