#include <stdio.h>

int main() {
    int a = 0;
    S:
    a++;
    if (a < 4) {
        printf("%d",a);
        printf("\n");
        goto S;
    }
    
    return 0;
}

Embed on website

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