# Arup Guha
# 6/8/2022
# Family 2 Question Game

# See if last name is Guha or not.
lastName = input("Is your last name Guha?(yes/no)\n")

# This branch of the if is for the people in the family with last name Guha.
if lastName == "yes":

    # This can tell the difference between Arup and Anay.
    readBook = input("Have you read all 7 Harry Potter books?\n")

    # Anya read all of Harry Potter.
    if readBook == "yes":
        print("You must be Anya!")

    # Arup mostly reads non-fiction.
    else:
        print("You must be Arup!")

# Must be Anita or Simi
else:

    # Find out if they eat oatmeal a lot.
    oatmeal = input("Do you eat oatmeal for breakfast most of the time?\n")

    # Simi does!
    if oatmeal == "yes":
        print("You must be Simi!")

    # Anita does sometimes, but pretty rarely.
    else:
        print("You must be Anita!")
