#include <iostream>
#include <iomanip>
#include <sstream>

int main() {
	std::stringstream ss(R"(normal_text "quoted text with embded \"quote\"" normal_text)");

	std::string s;
	while (ss >> std::quoted(s)) {
		std::cout << s << std::endl;
	}
}
