#include<stdio.h> main() { int num1,num2,mul=0,i=1; printf("Enter the first number : "); scanf("%d",&num1); printf("\nEnter the second number : "); scanf("%d",&num2); while(i<=num1) { mul=mul+num2; i++; } printf("\n\n The result is : %d * %d = %d",num1,num2,mul); return 0; }