#include <iostream>
using namespace std;

int main() {
    int i = 0;

    while(i < 11) {
        cout << i << endl;
        i = i + 2;
    }

}