#ifndef _IOSTREAM_
#define _IOSTREAM_

#include <ostream>
#include <istream>

namespace std
{
extern ostream& cerr;
extern ostream& cout;
extern istream& cin;
}

#endif
