31Omitting using namespace std does not make cout inaccessible. One can use its “full name” std::cout instead. Remove the statement and try it. cout is part of the C++ Standard Library. All elements of the library belong to the std namespace and their names can be prefixed by std:: Using the using namespace std statement, the prefix may be omitted.