print( "-----------------------" ) name = input("What is your name?") age = input("How old are you?") height = input("What height are you?") name = name + "." height = height + "." print( "Hello", name, "You are", age, "years old,", "and your height is", height,)