name1 = input("What is the first persons name? ") length1 = len(name1) name2 = input("What is the second persons name? ") length2 = len(name2) lovematch = (length1 * length2) % 15 print('#' * lovematch) if lovematch < 2: print("You are a terrible match") if lovematch < 5 and lovematch >3: print("You probably shouldn't bother") if lovematch < 8 and lovematch > 6: print("You are a good match") if lovematch < 9 and lovematch > 10: print("You are a perfect match!")