diff --git a/AcWing/710/710.cpp b/AcWing/710/710.cpp new file mode 100644 index 00000000..37182bd8 --- /dev/null +++ b/AcWing/710/710.cpp @@ -0,0 +1,12 @@ +#include + +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; +}