#include <stdio.h>

int sum(int a, int b);

int main() {
    printf("%d\n",sum(6,6));
    return 0;
}

int sum( int a, int b){
    int sum=a+b;
   return sum;
}

Embed on website

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