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

age = int( input( "What is your age?" ) )
print(age)

height = float( input( "What is height?" ) )
print(height)

print("Hello", name + ".", "You are", age, "years old and your height is", height, "m")