A=list(input()) B=list(input()) A.sort() B.sort() i=0 while A[i]==B[i]: i+=1 if i==len(A): print("YES") else: print("NO")