#include using namespace std; #define ll long long int main(){ int b, c; cin >> b >> c; cout << (b == c ? "Yes" : "No") << "\n"; return 0; }