name = input("What is your full name? ") age = int(input("How old are you? ")) height = float(input("What height are you in metres? ")) print("Hello", name, "you are", age, "years old and you are", height, "metres tall. Is that correct?")