# Arup Guha
# 1/24/2020
# Program to figure out who is who in my family!

# See if the user is an adult.
adult = input("Are you an adult?(y/n)\n")

# Adult case.
if adult == 'y':

    # See if the user is a planner.
    planner = int(input("how many days in advance to you plan vacations?\n"))

    # Only Anita likes planning things...
    if planner > 14:
        print("You must be Anita!")

    else:
        print("You must be Arup!")

# Child case.
else:

    # Find out about the make up time.
    makeuptime = int(input("how many minutes do you spend putting on make up in the morning?\n"))

    # This is what Simi does...
    if makeuptime > 0:
        print("You must be Simi!")

    # Anya's case.
    else:
        print("You must be Anya!")
    
