name= input("What is your name? ")
age= int(input("How old are you? "))
height= input("What height are you? ")
message = f"Hello, {name}. You are {age} years old, and your height is {height}."
print(message)