Name = input( "what is your name? " ) Age = int(input( "How old are you? " )) Height = float(input( "What height are you? " )) print( "Hello", Name + ". You are", Age, "years old. And your height is", Height )