def approx_pi(i):
pi = 0
for j in range(i+1) :
pi += (((-1)**pi) / ((2*pi)+1))
return(4*pi)
print((4*pi))