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