import math N, L = map(int, input().split()) mod = 998244353 M = math.ceil((N + L - 1) // L) ans = (pow(2, M, mod) - 1) % mod print(ans)