'''py2'''
print "How old are you?"
age =raw_ input()
print "How tall are you?"
height = raw_input()
print "How much do you weigh?"
weight = raw_input()
print "So, you're %r old, %r tall and %r heavy." % (age, height, weight)
'''py3'''
print ("How old are you?",)
age = input()
print ("How tall are you?",)
height = input()
print ("How much do you weigh?",)
weight = input()
print ("So, you're %r old, %r tall and %r heavy." % (age, height, weight))