name = input("whats your name\n") age = int(input("age\n")) height = int(input("height\n")) print("Hello {}. You are {} years old, and your height is {}".format(name, age, height))