using namespace std; int main(){
int a=2; while(a % 102 != 0){ cout << a << endl; a = a+2; } return 0;
}