#include using namespace std; int i, j, k; int main() { cin >> i >> j >> k; if (i <= j && i <= k) cout << "Yes" << endl; else cout << "No" << endl; }