#include int main(void) { int32_t I, J, K; std::cin >> I >> J >> K; std::cout << (I <= J && I <= K ? "Yes" : "No") << std::endl; return 0; }