#include <stdio.h>

int main() {
    int n,k,total=1;
    scanf("%d %d",&n, &k);
    for(int i=1; i<=k; k++) {
        total*=n;
        total/=k;
        n--;
    }
   
    printf("%d",total);
    return 0;
}

Embed on website

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