from math import sin,cos,pi N=10**6 print(N) for i in range(N): print(round(10**9*sin(2*pi/N*i)),round(10**9*cos(2*pi/N*i)))