# Arup Guha
# 2/22/2014
# UCF Adventure Game

def main():

    park = input("Will you drive to campus?\n")

    # Drive to campus
    if park == "yes":

        print("It takes you 45 minutes to find a spot.")
        print("You are late to class and decide not to go.")
        food = input("Where will you eat, Wackadoos or Subway?\n")

        # Wackadoos is slow...
        if food == "Wackadoos":
            print("You die from starvation, waiting for your food to be delivered.")
        else :
            print("You are the 100 millionth Subway customer and win a car!!!")
    
    else:

        # Jobs are good!
        print("You take the shuttle and make it to class.")
        print("Your prof helps you get some interviews for jobs.")
        job = input("Where do you want to work, Google, Apple, or Microsoft?\n")

        # Here are the trade-offs!
        if job == "Apple":
            print("You get to work on iPhone 18, but are sworn to secrecy!!!")
        elif job == "Google":
            print("You love California and become a hippie!!!")
        else:
            print("According to Jeff, you are evil!!!")

main()
