fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int kawa;
  6. int taku;
  7. int kawataku;
  8. kawa=4;
  9. taku=2;
  10. kawataku=kawa*taku;
  11. printf("%d\n",kawataku);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
8