name1=input ("What is the first name?") name2=input ("What is the second name?") length1 = len(name1) length2 = len(name2) lovematch = (length1*length2) % 11 print("["+("#"*lovematch)+"]") if lovematch<=2: print("The two of those people are a terrible match.") else: if lovematch==3 or 4 or 5: print("They should'nt bother trying it out.") else: if lovematch==6 or 7 or 8: print("These two people are a good match") else: print("These two people are a perfect match!")