print ("Are you a good match?") name1 = input( "What is the first person's name?: ") length1 = len(name1) name2 = input( "What is the second persons name?: ") length2 = len(name2) score = (length1 * length2 % 11) if score <= 2: print ("0-2 You are a terrible match") elif score <= 5: print ("3-5: You probably should bother") elif score <= 8: print ("6-8: You are a good match") elif score <= 10: print ("9-10: Perfect match!")