s=list(map(int,input())) n=len(s) M=998244353 print(sum(s[i]*pow(2,i,M)*pow(11,n-1-i,M)%M for i in range(n))%M)