0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 00:05:24 +00:00
OI-codes/AcWing/709/709.cpp

13 lines
181 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
int x;
cin >> x;
for (int i = 1; i <= x; i++) {
if (i & 1) cout << i << endl;
}
return 0;
}