#include using namespace std; int main(){ string S; cin>>S; int N=S.size(); map M; int count=0; for(int i=0;i0)count++; M[S[i]]++; } if(count>0)cout<<"NO"; else cout<<"YES"; }