name = input("What is your name? ") age = input("How old are you? ") height = input("What height are you? ") # print(name) # print(age) # print(height) print("Hello " + name + "." "You are " + age + " years old, and your height is " + height + "cm." ) # name = "Jim" # age = 23 # height = 1.45 # message = "Hello {}. You are {} years old, and your height is {}.".format(name, age, height) # print(message)