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 = (length2 * length1 ) % 11 if LoveMatch in range (0,2): print("You Are A Terrible Match") elif LoveMatch in range (3,5): print("You probally shouldn't bother") elif LoveMatch in range (6,8): print("You Are A Good Match") elif LoveMatch in range (9,100): print("PERFECT MATCH!")