#define _USE_MATH_DEFINES #include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //fixed #include //setprecision #include //swap, pair #include //abs(int) #include //sqrt,ceil,M_PI, pow, sin #include //stringstream,getline #include //gcd, accumlate #include //deque #include //randam_device #include //numeric_limits using namespace std; constexpr long long int D_MOD = 1000000007; int main() { int N, M; cin >> N >> M; bool flg = true; long long int nowT = 0, nowP = 0; for (int i = 0; i < M; i++) { long long int T, P; cin >> T >> P; if (T - nowT >= abs(P - nowP)) { nowT = T; nowP = P; } else { flg = false; break; } } if (flg) { cout << "Yes" << endl; } else { cout << "No" << endl; } return 0; }