Hello All,<div><br></div><div>I have trouble in using filtering streams with cin in the following code:</div><div><br></div><div><div>#include <boost/iostreams/filtering_stream.hpp></div></div><div><div>#include <iostream></div> <div><br></div><div>namespace io = boost::iostreams;</div></div><div><br></div><div>int main()</div><div>{</div><div><div>� � io::filtering_istream in;</div><div>� � in.push(std::cin);</div><div><br></div><div>� � int i;</div> <div>� � in >> i;</div><div>� � std::cout << i << '\n';</div><div>� � in >> i;</div></div><div>� � std::cout << i << '\n';� �</div><div>}</div><div><br></div><div>I have to input two integers and ctrl+z to terminate the input from screen. How can I input 1 integer, output it, then input another one and output it, which like the conventional std::cin?</div> <div><br></div><div>Thank you very much for your kind help!</div><div><br></div><div>Best regards,</div><div><br></div><div>Jayden</div>