#include using namespace std; using ll=long long; using ld=long double; using P=pair; using V=vector; #define rep(i,n) for(ll i=0;i> s; int n=s.size(),count=0; rep(i,n) if(s[i]=='1') count++; if(count<=1){ cout << "No" << endl; return 0; } if(count==2){ cout << "Yes" << endl; return 0; } int i=0; while(s[i]=='0') i++; while(s[i]=='1') i++; while(i