name1 = input('What is the first persons name?') name2 = input('what is the second persons name?') character_count1 =len(name1) character_count2 =len(name2) love_match = character_count1 * character_count2 percentage = love_match / 11 print(percentage) if percentage < 2: print('You are a terrible match') if percentage > 3 and percentage < 5: print('You probably shouldnt bother') if percentage > 4 and percentage < 6 : print('You are a good match') if percentage > 7 : print('You are a great match')