#include int main(void) { int t, a, b; scanf("%d%d%d", &t, &a, &b); if(t < a || t < b)printf("NO\n"); else printf("YES\n"); return 0; }