a=input() b=input() flag=0 for c_a in a: if a.count(c_a)!=b.count(c_a): flag=1 break if flag==0: print("YES") else: print("NO")