name1 = input( "what is your name?" ) length1 = len( name1 ) name2 = input( "what is the second persons name?" ) length2 = len( name2 ) lovematch = (length1 * length2) %11 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!" )