#include using namespace std; using ll = long long; constexpr char newl = '\n'; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; for (int i = n / 2 + 1; i <= n; i++) { cout << i << " \n"[i == n]; } return 0; }