0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 21:45:25 +00:00
OI-codes/AcWing/710/710.cpp

13 lines
186 B
C++

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