| using namespace std; | |
| int main() { | |
| ios::sync_with_stdio(false); | |
| cin.tie(nullptr); | |
| int n; | |
| if (!(cin >> n)) return 0; | |
| for (int i = 1; i <= n; ++i) { | |
| if (i > 1) cout << ' '; | |
| cout << i; | |
| } | |
| cout << '\n'; | |
| return 0; | |
| } |
| using namespace std; | |
| int main() { | |
| ios::sync_with_stdio(false); | |
| cin.tie(nullptr); | |
| int n; | |
| if (!(cin >> n)) return 0; | |
| for (int i = 1; i <= n; ++i) { | |
| if (i > 1) cout << ' '; | |
| cout << i; | |
| } | |
| cout << '\n'; | |
| return 0; | |
| } |