// WAIT FOR IT IT TAKES LIKE 3 SECONDS

#include <iostream>
#include <vector>

int main() {
    std::vector<int> offsets = {10, 6, 3, 1, 0, 1, 3, 6, 10, 15, 19, 22, 24, 25, 24, 22, 19, 15};
    int i = 0;
    std::string message = "BLIN MADERAAAAAAAAAA";

    while (true) {
        int offset = offsets[i % offsets.size()];
        for (int j = 0; j < offset; ++j) {
            std::cout << " ";
        }
        std::cout << message << std::endl;
        i++;
    }

    return 0;
}

Embed on website

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