#include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n;
for (int i = 1; i <= n; i++)
{
cout << max(n - i, i - 1) * 2;
cout << "\n";
}
return 0;
}
0 回复
0 转发
0 喜欢
0 阅读



