#include <iostream>

int main() {
  int a, b; std::cin >> a >> b;
  std::cout << (a <= b ? "Yes" : "No") << "\n";

  return 0;
}