#include <stdio.h>
#include <string.h>
int main(void) {
char s[] = "\"c c++ \"node.js\" java c# python\"";
int j = 0, len = strlen(s);;
puts(s);
for (int i = 0; i < len; i++) {
if (s[i] != '"' && s[i] != '\\') {
s[j++] = s[i];
}
}
if (j > 0) s[j] = 0;
puts(s);
return 0;
}
/*
run:
"c c++ "node.js" java c# python"
c c++ node.js java c# python
*/