name1 = input( "What is the first person's name: " ) length1 = len( name1 ) name2 = input( "What is the second person's name: " ) length2 = len( name2 ) love_score = (length1 * length2) %11 if love_score <2 : print(" Dont even Bother") elif love_score <5 : print("You probably shouldnt bother") elif love_score <8 : print("Your a good match!") elif love_score <10: print ("You are the perfect match!!") else : print ("You are sworn eneimes")