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 = length1 * length2 %11 if lovematch in range (0, 3): print("You are a terrible match") else: if lovematch in range (3, 6): print("You probably shouldn't bother") else: if lovematch in range (6, 9): print("You are a good match") else: if lovematch >= 9 : print("You are a perfect match!")