#include #include #include using namespace std; int main() { for (int i {5}; i <= 100; i += 5) { cout << setw(3) << i << "\n"; } cout << "Here I come, ready or not!\n"; //i no longer exists at this point. return EXIT_SUCCESS; }