#include <iostream>

int main() {
    for (int i = 0; i < 5; ++i) {
        std::cout << "Hello, World! " << i << std::endl;
    }

    return 0;
}