mod=998244353 t=int(input()) for i in range(t): n=int(input()) ans=pow(25,-1,mod) ans*=pow(26,n+1,mod)-1 ans-=1 print(ans%mod)