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))