fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int a,b,c;
  5. a=10086;
  6. b=2778;
  7. c=a*b;
  8. printf("c is %d\n",c);
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5308KB
stdin
Standard input is empty
stdout
c is 28018908