class Lab5Q5: @staticmethod def main(): age = input("What is the age of the person?: ") if int(age) >= 18: mbrCd = input("Does the person have a membership card?: ") if mbrCd == "yes": print("Entry Granted!!!!") print("Person successfully registered to compete in the poker tournament!!!!") else: print("Entry Denied!!!!") print("Person must be a member to compete in the poker tournament!!!!") else: print("Entry Denied!!!!") print("Person must be an adult to compete in the poker tournament!!!!") age = input("What is the age of the person?: ") mbrCd = input("Does the person have a membership card?: ") if int(age) >= 18 and mbrCd == "yes": print("Entry Granted!!!!") print("Person successfully registered to compete in the poker tournament!!!!") else: print("Entry Denied!!!!") print("Person must be a member or an adult to compete in the poker tournament!!!!") Lab5Q5.main()