What does using namespace std; allow in C++ source code?
using namespace std;
Standard-library names such as cout and endl can be used without the std:: prefix.
std::
C++ identifiers stop being case-sensitive.
All include directives can be removed.
The main function is renamed to std.