name1 = input("What is the first persons name? ") name2 = input("What is the second persons name? ") length1 = len(name1) length2 = len(name2) match = length1*length2 print(match % 11, "/ 10") if match <= 2 : print("You are a terrible match") elif match <= 5 : print("You probably shouldn't bother") elif match <= 8 : print("You are a good match") else : print("You are a perfect match!")