#include<iostream>
#include<cstdlib>
using namespace std;
int main() {
system("chcp 1251>nul");
int n;
cout << "n " << n;
cin >> n;
int k = 1;
while (k < n) {
k = k * (n - k) / (k + 1);
cout << " " << k++;
k++;
}
cout << endl;
system("pause");
return 0;
}