#include<stdio.h>
int main()
{
    int num1=2;
    int num2=3;
    int result;
    result = num1*num2;
    printf("the result of multipication %d from%d is %d\n ",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: