name1 = input ("What is the first person's name")
name2 = input ("What is the second person's name")
length1 = len ( name1 )
length2 = len ( name2 )
match = len( name1 ) + len( name2 )
print( match %11, "/10")

if match <= 2:
    print("You are a terrible match")

elif match <= 5: 
    print("You probably shouldn't bother")

elif match <=  8: 
    print("You are a good match")

elif match >= 9: 
    print("You are a perfect match!")