#include using namespace std; int main() { int x, y, z; cin >> x >> y >> z; if (x <= y && y <= z) cout << "yes" << endl; else cout << "no" << endl; return 0; }