#include<stdio.h>
#include<conio.h>
int main()
{
int i=14;
int j=15;
int k=i*j;
printf(" The product is %d",k);
getch();
return 0;
}
#include<conio.h>
int main()
{
int i=14;
int j=15;
int k=i*j;
printf(" The product is %d",k);
getch();
return 0;
}
No comments:
Post a Comment