mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 11:38:49 +00:00
16 lines
218 B
C++
16 lines
218 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int n;
|
|
|
|
int main() {
|
|
while (cin >> n, n) {
|
|
for (int i = 1; i <= n; i++) {
|
|
cout << i << ' ';
|
|
}
|
|
cout << endl;
|
|
}
|
|
return 0;
|
|
}
|