#include using namespace std; int main() { int b, c; cin >> b >> c; string ans = "No"; if( b == c ) ans = "Yes"; cout << ans << endl; }