#include #include using namespace std; int main() { for (int i{5}; i <= 100; i += 5) { cout << i << "\n"; } cout << "Ready or not, here I come!\n"; }