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