#include <iostream>
void MyPuts(const char* msg,int lengh) {
    int i = 0;
    A:
    std::cout << msg[i];
    if (i < lengh) {
        i++;
        goto A;
    }
    std::cout << std::endl;
}

int main() {
    MyPuts("おいーっす",15);
    MyPuts("ぼくコッシー",18);
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: