name1 = input("What is the first person's name: ")
length1 = len( name1 )
name2 = input("What is the second person's name: ")
length2 = len( name2 )

lovematch = (length1 * length2) % 11
print (  "#" * lovematch  )

if lovematch < 3:
    print('You are a terrible match')

if lovematch < 6 and lovematch > 2:
    print("You probably shouldn't bother")

if lovematch < 9 and lovematch > 5:
    print("You are a good match")

if lovematch < 11 and lovematch > 8:
    print("You are a perfect match!")