n = int(input()) A = list(map(int, input().split())) A.sort() ans = 0 for i in range(n): ans = (10 * ans + A[i]) % 998244353 print(ans)