// yukicoder: No.730 アルファベットパネル // 2019.5.3 bal4u #include char t[128], S[15], *s = S; int main() { scanf("%s", S); while (*s) if (t[*s++]++ > 0) { puts("NO"); return 0; } puts("YES"); return 0; }