name1 = input("What is the first person's name: ") length1 = len(name1) name2 = input("What is the second person's name: ") length2 = len(name2) Match = (length1 * length2) %11 Bar = '#' * Match print('[',Bar,']') if Match <= 2 : print("You are a terrible match") if Match >= 3 and Match <= 5 : print("You probably shouldn't bother") if Match >= 6 and Match <= 8 : print("You are a good match") if Match >= 9 and Match <= 10 : print("You are a perfect match!")