fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. char arg[300];
  6.  
  7. scanf("print '%[^']s'", arg);
  8. printf("%s", arg);
  9.  
  10. fgetc(stdin);
  11. fgetc(stdin);
  12. return 0;
  13. }
Success #stdin #stdout 0s 9424KB
stdin
print 'hello world'
xx
stdout
hello world