#include #define rep(i, n) for (int i = 0; i < n; ++i) typedef long long ll; using namespace std; int main() { cin.tie(0)->sync_with_stdio(0); int N = 100; long double theta = acos(-1) * 2; vector> ans; rep(i, N) { long double t = theta / N * i; int x = 1000000000 * cos(t); int y = 1000000000 * sin(t); ans.emplace_back(y, x); } cout << ans.size() << "\n"; for (auto p : ans) { cout << p.first << " " << p.second << "\n"; } return 0; }