#include using namespace std; int main() { for(int x=100;x<=120;x=x+2) { cout << x << endl; } // Success return 0; }