S=input() mod=998244353 ANS=0 LEN=len(S) for i in range(LEN): x=int(S[i]) ANS+=pow(11,LEN-i-1,mod)*x*pow(2,i,mod) ANS%=mod #print(ANS) print(ANS)