import math n = 10 ** 5 h = 10 ** 9 print(n) for i in range(n): theta = math.pi * 2 * i / n x, y = h * math.cos(theta), h * math.sin(theta) print(math.floor(x), math.floor(y))