name1 = input( "What is the first person's name: " )
len1 = len( name1 )

name2 = input( "What is the seconds peron's name: " )
len2 = len( name2 )

LoveMatch = ( len1  * len2  ) % 11

print ( LoveMatch )




if LoveMatch <= 2 :
    print ("Terrible match.")  


elif LoveMatch <= 5 :
    print ("they think of you as more as a friend or if you try you guys can be a good match")


elif LoveMatch <= 8 :
    print ("Extremely or great good match.")


else : 
    print("Perfect match, Wonderful, just wonderful... They are 100% the right one for you. Take them out to dinner RIGHT NOW!!! or gay")