name1 = input("What is the first persons name?") name2 = input("What is the second persons name?") character_count1 = len(name1) character_count2 = len(name2) answer = character_count1 * character_count2 percentage = answer / 11 if percentage < 2: print("You are a terrible match!") if percentage > 2 and percentage < 5: print("You probably should'nt bother") if percentage > 5 and percentage < 9: print("You are a good match") if percentage > 9: print("You are a perfect match!")