#include <iostream> using namespace std; int main() { int b; cin >> b; for (int i =0; i <= b; i++) { if (i % 2 == 0) { cout<< i << endl; } } }