inputA = input() inputB = input() A = sorted(list(inputA)) B = sorted(list(inputB)) if A == B : print("YES") else : print("NO")