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