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