name1 = input("What is the first person's name: ") name2 = input("What is the second person's name: ") length1 = len(name1) length2 = len(name2) love_match = (length1 * length2) % 11 print(f"Your Love Match score is: {love_match}") print("Love Match bar: [" + "#" * love_match + "]") if love_match <= 2: print("You are a terrible match") elif love_match <= 5: print("You probably shouldn't bother") elif love_match <= 8: print("You are a good match") else: print("You are a perfect match!")