def ILI(): return list(map(int, input().split())) a=input() b=input() if list(a).sort()==list(b).sort(): print("YES") else: print("NO")