#include int main() { using namespace std; cin.tie(nullptr)->sync_with_stdio(false); int a, b; cin >> a >> b; cout << (a <= b ? "Yes\n" : "No\n"); }