#include using namespace std; void fast_io() { ios_base::sync_with_stdio(false); cin.tie(nullptr); } int main() { fast_io(); int i, j, k; cin >> i >> j >> k; if (i <= j && i <= k) { cout << "Yes" << endl; } else { cout << "No" << endl; } }