# SI@UCF Class
# 7/10/2013
# Program that identifies who you are!

def main():

    # Get the group number.
    group = int(input("Which group are you in?\n"))

    # Run the appropriate search code.
    if group == 1:
        group1()
    else:
        group2()



# Runs group 1's search.
def group1():

    # First question.
    tennis = input("Do you play tennis?\n")

    # Yes for tennis.
    if tennis == "yes" or tennis == "Yes":

        glasses = input("Do you wear glasses?\n")
        if glasses == "yes" or glasses == "Yes":
            print("You must be Sebastian.")
        else:
            print("You must be Julian.")

    # No for tennis
    else:

        girl = input("Are you a girl?\n")
        if girl == "yes" or girl == "Yes":
            print("You must be Julie")
        else:
            print("You must be Zane.")
            
# Runs group 2's search.
def group2():

    glasses = input("Do you wear glasses?\n")
    if glasses == "yes" or glasses == "Yes":

        highschool = input("Do you go to Lake Mary Prep?\n")
        if highschool == "yes" or highschool == "Yes":
            print("you must be Shantanu.")
        else:
            print("You must be Chris.")

    else:

        highschool = input("Do you go to Oviedo High?\n")
        if highschool == "yes" or highschool == "Yes":
            print("you must be Nikhil.")
        else:
            print("You must be Mitra.")

main()
