name1= input("what is your first persons name:") length1 = len( name1) name2= input("what is your second persons name:") length2 = len( name2) Love_Match = ( length1 * length2 ) % 11 print(Love_Match) if Love_Match <= 2: print("you are a terrible match") elif Love_Match <= 5: print("you probably shouldnt bother.") elif Love_Match <=8 : print("you are a good match") else : print("you are the best match")