#include <stdio.h>
#include <stdlib.h>

int stifel(int n, int k){
    if(n < 0 || k < 0)
        return 0;
    else
        return stifel(n)
        
}

int main() {
    printf("Hello world!\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: