#include <iostream>
#include <algorithm>
int main() {
std::string s = "\"c++ \"node.js\" c c++ c# python\"";
std::cout << s << '\n';
s.erase(remove(s.begin(), s.end(), '\"'), s.end());
std::cout << s;
}
/*
run:
"c++ "node.js" c c++ c# python"
c++ node.js c c++ c# python
*/