name1 = input("What is the first person's name " ) name2 = input("What is the second person's name " ) length1 = len( name1 ) length2 = len( name2 ) match = len( name1 ) + len( name2 ) print( match %11, "/10") if match in range (-1,3): print("you are a terrible match") elif match <= 5: print("you probably shouldn't bother") elif match <= 8: print("you are a good match") if match in range (8,11): print("you are a perfect match") else: print("you are a terrible match")