Question
Multiplication of Two Numbers
Sample TestCase Expected Output
1. 12 224
2. 2 816
Answer
#include<stdio.h> int main()
{ int num1,num2,prod;
scanf("%d %d", &num1, &num2);
prod = num1 * num2;
printf("%d",prod);
return 0;
}
This comment has been removed by a blog administrator.
ReplyDelete