#include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int I, J, K; cin >> I >> J >> K; if (I <= J && I <= K) cout << "Yes" << endl; else cout << "No" << endl; return 0; }