print('------------------------------') name1 = input('What is the first persons name: ') name2 = input(' What is the second persons neme: ') character_count1 = len(name1) character_count2 = len(name2) answer = character_count1 * character_count2 percentage = answer / 11 if percentage < 2: print('Your are a terrible match') if percentage > 2 and percentage < 5: print("You probably shoudn't bother") if percentage > 5 and percentage < 8: print('You are a good match') if percentage > 8 and percentage < 10: print('You are a perfect match!')