print "Good morning!  Your adventure begins after class today!  What will you do?"
print
print "  1 - Go back to sleep."
print "  2 - Grab some food."
print "  3 - Take a walk in the woods."
print
choice = raw_input("? ")
print
if choice == "1":
  print "You awaken after a long nap to discover that humanity has been enslaved by a tyrannical army of space robots.  What do you do?"
  print
  print "  1 - Form a resistance and fight the robots."
  print "  2 - Craft a costume and join the robot army."
  print "  3 - Practice for your CS21 quiz."
  print
  choice = raw_input("? ")
  print
  if choice == "1":
    print "Although the student body battles valiantly, you are ultimately defeated.  (What did you expect?  They're robots from space.)  Your act of defiance lives in the songs and folklore of human robot chassis polishers until the end of time."
  elif choice == "2":
    print "You don a collection of cardboard and tin foil and stealthily join the robotic collective.  You live the high life for some time but, ultimately, you are discovered due to your failure to properly speak the nuances of robot speech.  Beep boop."
  elif choice == "3":
    print "The invasion of the space robots (whose software is strangely and conveniently written in Python) comes to a sudden halt when you carefully exploit an integer division bug in their artificial intelligence.  You apply your newfound robotic army toward the advancement of civilization and an unprecedented era of productivity begins.  Pretty good result for a lab course, huh?"
  else:
    print "That was not a valid answer."
elif choice == "2":
  print "You get some food and find a table.  Shortly after you sit down, you notice that someone has left an ornate golden oil lamp at another seat at your table.  What do you do?"
  print
  print "  1 - Polish the side of the lamp."
  print "  2 - Give the lamp to Lost & Found."
  print
  choice = raw_input("? ")
  print
  if choice == "1":
    print "Your polishing creates a super reflective surface on the lamp.  The sun shines through a window, reflecting off of this surface in an extremely focused beam and burns a hole through the wall.  You awkwardly collect your lunch and eat outside."
  elif choice == "2":
    print "You drop by the Lost & Found to return the lamp.  The genie staffing the desk at this time shouts with delight and thanks you for returning the lamp by granting you several wishes.  You live happily ever after."
  else:
    print "That was not a valid answer."
elif choice == "3":
  print "You take a pleasant walk through the woods.  Five minutes into your meandering journey, you encounter a bear wearing a party hat.  What do you do?"
  print
  print "  1 - Offer the bear a salmon."
  print "  2 - Sing to the bear."
  print "  3 - Take the party hat."
  print
  choice = raw_input("? ")
  print
  if choice == "1":
    print "You hand the bear the fresh salmon that you always carry in your pocket.  \"Astounding!\", says the bear.  \"You are the first human to offer me a present for my birthday!\"  The bear takes you to a party deep within the woods; there, you eat the best meal of your life with a rabbit, a pig, and a thoroughly lost and confused giraffe."
  elif choice == "2":
    print "You sing a song to the bear, thereby enchanting it.  It becomes considerably easier to travel around campus now that you have a bear.  As an added bonus, it also breathes fire and its party hat dispenses candy."
  elif choice == "3":
    print "You take the party hat.  Immediately, the bear transforms into a gorilla.  The gorilla thanks you for freeing it from its curse and rewards you with Gyst, the magical amulet of Getting the General Idea.  You never again have significant difficulty in completing your exams."

