name1 = input("What is the first person's name: ") name2 = input("What is the second person's name: ") length = len(name1) length2 = len(name2) lovematch = (length*length2)%11 print(lovematch) if lovematch <=2: print ("horrible terrible match") elif lovematch <=5: print ("you probably shouldnt bother") elif lovematch <=8: print ("you are a good match") else: print ("you are a perfect match")