print( "-----------------------" ) print( "Let's Do More Maths!" ) age = int( input( "What is your age?" ) ) height = float( input( "Your height: " ) ) year = int( input( "What year are you in?" ) ) print( age, "+", height, "+", year, "=", age+height+year )