name = input("What is your name? ") age = int(input("What is your age? ")) height = float(input("What is your height? ")) print("Hello,", str(name)+".", "You are", age, "aYears old, and your height is", height)