fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. puts("hoge");
  6. int a=42;
  7. puts("fuga");
  8. printf("%d\n",a*2-a);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
hoge
fuga
42