fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int a,b,area;
  5. printf("Enter the value of a,b:");
  6. scanf("%d %d",&a,&b);
  7. area=(a*b);
  8. printf("%d",area);
  9. return 0;
  10. }
Success #stdin #stdout 0s 5288KB
stdin
20
stdout
Enter the value of a,b:655340