fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int a, b;
  6.  
  7. printf("Enter two number for multiplication\n");
  8. scanf("%d %d", &a, &b);
  9.  
  10. printf("Multiplication of %d and %d is %d\n", a, b, a * b);
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0.01s 5272KB
stdin
19 89
stdout
Enter two number for multiplication
Multiplication of 19 and 89 is 1691