#include<stdio.h>
int main()
{
    int num1=200;
    int num2=50;
    int result;
    result=num1-num2;
    printf("the result of substraction %dfrom %d is %d",num1,num2,result);
    return 0;
}

Embed on website

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