name1=input("What is the first person's name:") length1=len(name1) name2=input("What is the seconds person's name:") length2=len(name2) LoveMatch = ( length1 * length2 ) % 11 print(LoveMatch) if LoveMatch <= 2: print ("You are a terrible match") elif LoveMatch <= 5: print ("You probally shouldn't bother") elif LoveMatch <= 8: print ("You are a good match") else: print ("You are a perfect match")