How come my code is giving TLE on spoj but its giving output in 0.09 s on IDEONE?
And is there any other way to optimise my solution?
here is my code
t=input()
i=0
while i<t:
n=input()
sum=2**(n+1)
sum=sum-1
sum=sum%1298074214633706835075030044377087
print (sum)
i+=1