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