# Arup Guha
# Guess Who!
# 2/15/2014

def main():

    adult = input("Are you an adult?\n")

    # Must be mom or dad.
    if adult == "yes":

        orchestra = input("Do you like the orchestra?\n")

        if orchestra == "yes":
            print("You must be Arup!")
        else:
            print("You must be Anita!")

    # Must be one of the kids.
    else:

        talk = input("Can you speak in English?\n")

        if talk == "yes":
            print("You must be Simi!")
        else:
            print("Gaa gaa goo goo...you must be Anya!")

main()
