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 ) Love_Match = length1*length2 %11 if Love_Match <= 2 : print("You are a terrible match") if Love_Match <= 5 and Love_Match >= 3 : print("You probably shouldn't bother") if Love_Match <= 8 and Love_Match >= 5 : print("You are a good match") if Love_Match <= 10 and Love_Match >= 9 : print("You are a perfect match!")