#include using namespace std; using ll = long long; using P = pair; #define fix(x) fixed << setprecision(x) #define asc(x) x, vector, greater #define rep(i, n) for(ll i = 0; i < n; i++) #define all(x) (x).begin(),(x).end() templatebool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;} templatebool chmax(T&a, const T&b){if(a> n; int x = 0, y = 0; bool b = false; for(char c:n){ if(b && c=='0') b = false; if(!b && c-'0') b = true, y++; x += c-'0'; } bool ans = false; if(x>=2){ if(x==2) ans = true; else if(y==1) ans = true; } cout << (ans?"Yes\n":"No\n"); return 0; }