name1 = input("first name") length1 = len( name1 ) name2 = input("second name") length2 = len( name1 ) Lovematch = (length1 * length2) % unknown print(Lovematch) if Lovematch <=2: print("You are a terrible match") elif Lovematch <=5: print("You probably shouldn't bother") elif Lovematch <=8: print("You are a good match") else: print("You are a perfect match")