name1 = input( "What is the first person's name: ") lenght1= len(name1) name2 = input( "What is the second person's name: ") lenght2= len(name2) Love_Match = (lenght1 * lenght2 ) % 11 print(Love_Match) if Love_Match <= 2: print("You are a terrible match") elif Love_Match <= 5: print("You probably shouldn't bother") elif Love_Match <= 8: print("You are a good match") else: print("You are a perfect match!")