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