name1 = input("What is the first person's name: ") length1 = len(name1) name2 = input("What is the second person's name: ") length2 = len(name2) lovematch = int(length1 * length2) %11 print(lovematch) if lovematch >=9: print("You are a perfect match") elif lovematch >= 6: print("You are a good match") elif lovematch >=3: print("You probably shouldn't bother") else: print("You are a terrible match")