#include #include using namespace atcoder; using namespace std; typedef long long ll; typedef long double ld; typedef unsigned long long ull; typedef pair pll; // // 多倍長テンプレ // /* ---------------------- ここから ---------------------- */ // #include // #include // namespace mp = boost::multiprecision; // // 任意長整数型 // using Bint = mp::cpp_int; // // 仮数部が10進数で1024桁の浮動小数点数型(TLEしたら小さくする) // using Real = mp::number>; // /* ---------------------- ここまで ---------------------- */ using mint = modint998244353; // using mint = modint1000000007; ll mod = 998244353; // ll mod = 1000000007; ll inf = 2e18; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep1(i, n) for (int i = 1; i <= (int)(n); i++) #define all(a) (a).begin(), (a).end() template inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } int main(){ ios_base::sync_with_stdio(0); cin.tie(nullptr); ll a,b; cin>>a>>b; if(a<=b)cout << "Yes\n"; else cout << "No\n"; }