0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-05 13:38:47 +00:00
OI-codes/AcWing/709/709.cpp

13 lines
181 B
C++
Raw Normal View History

#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;
}