#include #include using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf 10000000 bool check(vector cnt,int last = 0){ for(int i=last;i<9;i++){ if(cnt[i]>=3){ cnt[i]-=3; if(check(cnt))return true; cnt[i]+=3; } if(i<7&&cnt[i]>0&&cnt[i+1]>0&&cnt[i+2]>0){ rep(j,3){ cnt[i+j]--; } if(check(cnt))return true; rep(j,3){ cnt[i+j]++; } } } bool f = false; rep(i,9){ if(cnt[i]==2){ if(f)return false; f=true; } else if(cnt[i]!=0)return false; } return f; } bool check(string S){ vector cnt(9,0); rep(i,S.size()){ cnt[S[i]-'1']++; } rep(i,9){ if(cnt[i]>4)return false; } bool f = true; rep(i,9){ if(cnt[i]!=0&&cnt[i]!=2)f=false; } if(f)return true; return check(cnt); } int main(){ string S; cin>>S; for(int i=0;i<9;i++){ S += '1'+i; if(check(S))cout<