#include using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) int main() { ios_base::sync_with_stdio(0); cin.tie(0); string s; cin >> s; bool ck = true; for (char c = 'A'; c <= 'Z'; c++) if (count(s.begin(), s.end(), c) > 1) ck = false; cout << (ck ? "YES" : "NO") << endl; return 0; }