#include using namespace std; int main() { string A,B; cin >> A >> B; sort(A.begin(), A.end()); sort(B.begin(), B.end()); if(A==B) A="YES";else A="NO"; cout << A << endl; return 0; }