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