#include <stdio.h>
#include <stdlib.h>
int main() {
    int *a0 = malloc(2 * sizeof(int));
    *(a0 + 0) = 1;
    *(a0 + 1) = 1;
    int a1 = 0;
    int a2 = 0;
    printf("%d ",*(a0 + 0));
    printf("%d ",*(a0 + 1));
    
    loop:
    if (a2 < 13) {
        a2 += 1;
        a1 = *(a0 + 0) + *(a0 + 1);
        *(a0 + 0) = *(a0 + 1);
        *(a0 + 1) = a1;
        printf("%d ",a1);
        goto loop;
    }
    free(a0);
    return 0;
}

Embed on website

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