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