name1 = input("What's the first name: ") name2 = input("What's the second name: ") length1 = len(name1) length2 = len(name2) Love_Match = ( length1 * length2 ) % 11 print(Love_Match) if Love_Match <= 4 : print("You are a terrible match!") elif Love_Match <= 7 : print("You have potential!") elif Love_Match <= 9 : print("You are nearly a perfect match!") else : print("You are a PERFECT match!!!")