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