diff --git a/AcWing/708/708.cpp b/AcWing/708/708.cpp new file mode 100644 index 00000000..e9e3e707 --- /dev/null +++ b/AcWing/708/708.cpp @@ -0,0 +1,15 @@ +#include + +using std::cin; +using std::cout; +const char endl = '\n'; + +int main() { + std::ios::sync_with_stdio(false); + + for (int i = 2; i <= 100; i += 2) { + cout << i << endl; + } + + return 0; +}