name1 = input("what is the first persons name: ") name2 = input("what is the second persons name: ") length1 = len(name1) length2 = len(name2) LoveMatch = (length1* length2)%11 print("your love match is", LoveMatch) if LoveMatch < 2 : print("OMG RUN AWAY FROM THEM") quit() if LoveMatch > 9 : print("OMG VERY GOOD VERY NICE") quit() if LoveMatch > 5 : print("Your love match is good!") quit() if LoveMatch < 5 : print("Your love match is bad") quit() if LoveMatch == 5 : print("Its aight i guess") quit()