Skip to content

Instantly share code, notes, and snippets.

@jacortinas
Forked from anonymous/Exercises
Created February 27, 2011 07:01
Show Gist options
  • Save jacortinas/845976 to your computer and use it in GitHub Desktop.
Save jacortinas/845976 to your computer and use it in GitHub Desktop.
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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment