#include #include using namespace std;int main(){ ostream_iterator oi(cout); *oi = 6; *++oi = 88; return 0;}