n1 = input('What is the first name? ') n2 = input('What is the second name? ') l1 = len(n1) l2 = len(n2) lm = l1 * l2 % 11 if lm > 0 and lm < 3 : print('You are a terrible match') elif lm >= 3 and lm < 6 : print('You probably shouldnt bother') elif lm >= 6 and lm < 9 : print('You are a good match') else : print('You are a perfect match')