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)>=10:
    print("You Are A Perfect Match!")
elif(LoveMatch)<=8:
            print("You Are A Good Match!")
elif(LoveMatch)<=5:
    print("You Probably Shouldnt Bother")
else: