#include <stdio.h>
void addNumbers(int a, int b){
    int sum= a+b;
    printf("sum of %d and %d is %d", a,b,sum);
}
int main() {
    addNumbers(5,8);
    return 0;
}

Embed on website

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