first_name = input("Enter the first name: ") second_name = input("Enter the second name: ") love_match_score = (len(first_name) * len(second_name)) % 11 print("The Love Match score is:", love_match_score) if love_match_score <= 2: print("You are a terrible match") elif love_match_score <= 5: print("You probably shouldn't bother") elif love_match_score <= 8: print("You are a good match") else: print("You are a perfect match!")