fork(6) download
  1. print "How old are you?",
  2. age = raw_input()
  3. print "How tall are you?",
  4. height = raw_input()
  5. print "How much do you weigh?",
  6. weight = raw_input()
  7. print "So, you're %r old, %r tall and %r heavy." % (age, height, weight)
Success #stdin #stdout 0s 7856KB
stdin
old
tall
weight
stdout
How old are you? How tall are you? How much do you weigh? So, you're 'old' old, 'tall' tall and 'weight' heavy.