#include <stdio.h>

int main() {
    printf("Hello world!\n");
    int k[] = {0,50};
    while (k[0] < k[1]) {
        printf("Hello world!\n");
        k[0]+=1;
        k[1]-=1;
    }
    printf("%d!\n",k[0]);
    return 0;
}

Embed on website

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