# Arup Guha
# 9/8/2020
# Twenty Questions - figuring out which person in my family I am thinking of!

# See if the person is an adult.
adult = input("Are you an adult(yes/no)?\n")


# Either Arup or Anita.
if adult == "yes":

    # Only Arup enjoys running in the morning.
    running = input("Do you enjoy running in the morning?\n")

    # Use this answer to separate between the two.
    if running == "yes":
        print("You must be Arup.")
    else:
        print("You must be Anita.")


# Either Simi or Anya.
else:

    # Only Simi has a license.
    drive = input("Do you have a driver's license?\n")

    # Use this answer to differentiate between the two.
    if drive == "yes":
        print("You must be Simi.")
    else:
        print("You must be Anya.")
