fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("반갑습니다.");
  5. printf("123\n");
  6. printf("456789\n");
  7. printf("123\n456789");
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 5304KB
stdin
Standard input is empty
stdout
반갑습니다.123
456789
123
456789