fork download
  1. IN = <<'EOS'
  2. 23 69 6e 63 6c 75 64 65 20 3c 73 74 64 69 6f 2e
  3. 68 3e 0a 0a 69 6e 74 20 6d 61 69 6e 28 76 6f 69
  4. 64 29 20 7b 0a 20 20 20 20 70 75 74 73 28 22 68
  5. 65 6c 6c 6f 20 77 6f 72 6b 5c 6e 22 29 3b 0a 20
  6. 20 20 20 72 65 74 75 72 6e 20 30 3b 0a 7d 0a
  7. EOS
  8.  
  9. puts IN.split(' ').collect{|item|item.hex}.pack('c*')
Success #stdin #stdout 0s 4716KB
stdin
Standard input is empty
stdout
#include <stdio.h>

int main(void) {
    puts("hello work\n");
    return 0;
}