#include #include #include #include #include #include #include #include #include #include #include #include #include #include //Binary Indexed Tree // #include // #include // #include // using namespace __gnu_pbds; //Binary Indexed Tree using ll = long long; using ull = unsigned long long; using ld = long double; using i128 = __int128; using namespace std; #define all(x) x.begin(),x.end() #define rall(x) x.rbegin(),x.rend() //iostream operator template istream &operator>>(istream &is, vector &x){for (auto &y:x){is >> y;} return is;} template ostream &operator<<(ostream &os, vector &x){ for (long long e = 0; e < (int)x.size(); e++){ if (e == (int)x.size()-1) os << x[e]; else os << x[e] << " "; } return os; } template istream &operator>>(istream &is, pair &x){is >> x.first >> x.second; return is;} template ostream &operator<<(ostream &os, pair &x){os << x.first << " " << x.second; return os;} //iostream operator template vector reversed(vector ary){int n = ary.size(); for (int i = 0; i <= n/2; i++) swap(ary[i], ary[n-i-1]); return ary;} template string reversed(string ary){int n = ary.size(); for (int i = 0; i <= n/2; i++) swap(ary[i], ary[n-i-1]); return ary;} namespace cpio{ std::ostream &operator<<(std::ostream &dest, __int128_t value) { std::ostream::sentry s(dest); if (s) { __uint128_t tmp = value < 0 ? -value : value; char buffer[128]; char *d = std::end(buffer); do { --d; *d = "0123456789"[tmp % 10]; tmp /= 10;} while (tmp != 0); if (value < 0) {--d; *d = '-';} int len = std::end(buffer) - d; if (dest.rdbuf()->sputn(d, len) != len) {dest.setstate(std::ios_base::badbit);} } return dest; } __int128 parse(string &s) { __int128 ret = 0; for (int i = 0; i < (int)s.length(); i++) if ('0' <= s[i] && s[i] <= '9') ret = 10 * ret + s[i] - '0'; return ret; } std::istream &operator>>(std::istream &is, __int128_t &value){ string temp; cin >> temp; value = parse(temp); return is; } //Debug out void dout(){cerr << "\n";} template void dout(const T& a, const Ts&... b){cerr << a; (cerr << ... << (cerr << ' ', b)); cerr << "\n";} //Yes or No void yon(bool yorn, string Y = "Yes", string N = "No"){cout << (yorn?Y:N) << endl;} } using namespace cpio; namespace cpmath{ //Math library for Competitive-Programming constexpr const ll mod97 = 1000000007; constexpr const ll mod99 = 1000000009; constexpr const ll mod89 = 998244353; constexpr double pi = acos(-1); constexpr const int DX4[4] = {1, 0, -1, 0}; constexpr const int DY4[4] = {0, 1, 0, -1}; constexpr const int DX8[8] = {-1, 0, 1, -1, 1, -1, 0, 1}; constexpr const int DY8[8] = {-1, -1, -1, 0, 0, 1, 1, 1}; ll factorial(ll a, ll b = -1, const ll fmod = -1){ ll ans = 1; if (fmod > 1) { if (b == -1) for (ll i = a; i > 1; i--) ans = ((ans%fmod)*(i%fmod))%fmod; else for (ll i = a; i >= b; i--) ans = ((ans%fmod)*(i%fmod))%fmod; } else{ if (b == -1) for (ll i = a; i > 1; i--) ans = ans*i; else for(ll i = a; i >= b; i--) ans = ans*i; } return ans; } ll fastpow(ll m, ll p){ if (p == 0) return 1; if (p%2 == 0){ll t = fastpow(m, p/2); return t*t;} return m*fastpow(m, p-1); } ll modpow(ll m, ll p, const ll fmod){ if (p == 0) return 1; if (p%2 == 0){ll t = modpow(m, p/2, fmod); return (t*t)%fmod;} return (m*modpow(m, p-1, fmod))%fmod; } ld dtor(const ld deg){return deg*(pi/(ld)180);} //WARNING : Unstable function //TODO! : Rewrite for stabillity string basen(ll raw, int to){ char c[] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; string res = ""; while(raw){ res.push_back(c[raw%to]); raw/=to; } reverse(res.begin(), res.end()); return res; } template class modint{ private: long long num; public: //Constructer modint(): num(0LL){} modint(long long n){num = static_cast(n);} //Constructer:END modint &operator+(modint right){num = ((num+right.raw())%mod+mod)%mod; return *this;} modint &operator+(long long x){num = ((num+x)%mod+mod)%mod; return *this;} modint &operator-(modint right){num = ((num-right.raw())%mod+mod)%mod; return *this;} modint &operator-(long long x){num = ((num-x)%mod+mod)%mod; return *this;} modint &operator*(modint right){num = ((num*right.raw())%mod+mod)%mod; return *this;} modint &operator*(long long x){num = ((num*x)%mod+mod)%mod; return *this;} modint &operator/(modint right){return *this * this->inversed(right.raw());} modint &operator/(long long x){return *this * this->inversed(x);} modint &operator=(long long x){num = x; return *this;} friend ostream& operator<<(ostream &os, modint o){os << o.raw(); return os;} friend istream& operator>>(istream &is, modint &i){long long t; cin >> t; i = t; return is;} long long inversed(ll n){return cpmath::modpow(n, mod-2, mod);} long long raw(){return this->num;} }; //modint } using cpmath::mod89; using cpmath::mod97; using cpmath::mod99; using cpmath::modint; //using cpmath::DX4; //using cpmath::DY4; //using cpmath::DX8; //using cpmath::DY8; //GNU Binary Indexed Tree // template // using gtree = tree, rb_tree_tag, tree_order_statistics_node_update>; int main(){ int n; cin >> n; for (int i = 0; i < n; i++){ int vi, wi; cin >> vi >> wi; if (wi == 1){ cout << "Yes" << endl; return 0; } } cout << "No" << endl; }