#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>
int main() {
    uint64_t a = 0;
    while (1) { // 無限ループ
        printf("%" PRIu64 "\n", (a++));
    }
    return 0;
}

Embed on website

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