name1 = input ("what is the first person's name:") name2 = input ("what is the first person's name:") length1 = len(name1) length2 = len(name2) Lovematch=(length1*length2)%11 print(Lovematch) if Lovematch <=2: print ("this match is horrible") elif Lovematch <=5: print("you probably shouldnt bother") elif Lovematch <=8: print ("you are a good match") else: print ("your a perfect match")