#include <stdio.h>

int main() {
    int i, j, n=0;

    for(i=0; i<10; i++){
        printf("for i: %d\n", i);
        for(j=0; j<10; j++){
            if(j>5) continue;
            n++;
        }
        if(i>6) break;
        printf("i: %d\n", i);
    }
    printf("%d\n", n);
    return 0;
}

Embed on website

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