#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"; return EXIT_SUCCESS; }