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("Love Match Value ", love_match) print("Love Match Bar: [" + "❤" * love_match + "]") if 0 <= love_match <= 2: print("You are a terrible match") elif 3 <= love_match <= 5: print("You probably shouldn't bother") elif 6 <= love_match <= 8: print("You are a great match") elif 9 <= love_match <= 10: print("You are a perfect match")