fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x;
  5. int y;
  6. int result;
  7. scanf("%d %d", &x, &y);
  8. result = x * y;
  9. printf("%d", result);
  10. return 0;
  11. }
  12.  
  13.  
Success #stdin #stdout 0.01s 5288KB
stdin
10 20
stdout
200