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