print "What is your name?",
name = raw_input()
print "How old are you?",
age = raw_input()
print "Do you have a girlfriend"
girlfriend = raw_input()
for i in girlfriend:
if i == "Yes" or i == "yes" or i == "Y" or i == "y": break
else:
print "That is the wrong answer, try again"
print "How old is she?",
age2 = raw_input()
print "So %r, if you're %r old, and your girlfriend is %r old, than aren't you technically robbing the cradle?" % (name, age, age2)
print "Also"
print "How tall are you?",
height = raw_input()
print "How tall is she?",
height2 = raw_input()
print "LOL, liar, you KNOW she's taller than you!!!!"