name1 = input("what is the first persons name ") length1 = len( name1 ) name2 = input("what is the first persons name ") length2 = len( name2 ) LoveMatch = (length1 * length2) % 11 print (LoveMatch) if LoveMatch <=2: print("Terrible Match ") elif LoveMatch <=5: print("You guys are friends ") elif LoveMatch <=8: print("great match ") else: print("perfect relationship ")