#include #include using namespace std; int main() { for (int i {0}; i <= 25; i += 5) { cout << i << "\n"; } return EXIT_SUCCESS; }