m=10**10 def qp(k): if k < 10: return (1 << k)%m else: b=1 << (k/2) return (b*b*2)%m if k%2 else (b*b)%m print (28433*qp(7830457)+1)%m