#include <stdio.h>

int main() 
{
    //First Number
    int a=5;

    //Second number
    int b=9;

    //Add the Numbers
    int sum=a+b;

    //Print the result
    printf("Sum:%d\n",sum);
    return 0;
}

Embed on website

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