I used an online interpreter to run this code:
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)
I get an EOFError
on line 2. Why does this happen, and how do I fix it?