name1 = input("What is the first person's name: ") length1= len( name1 ) name2 = input("What is the second person's name: ") length2= len( name2 ) love = (length1 * length2) % 11 print(love) if love > 7: print("Get married or sumn idfk") elif love == 0: print("Let go its over") elif love >=3 and love <= 5: print("Maybe you have a chance.") else: print("Give it a go?")