n=int(input(),16) cnt=[0]*8 while(n>0): l=n%8 cnt[l]+=1 n//=8 maxC=max(cnt) ans=[] for i in range(8): if cnt[i]==maxC: ans.append(i) print(*ans)