// example usage of standard namespace // Mikhail Nesterenko // 4/22/2013 #include // importing all names from the standard namespace // using namespace std; // importing selected names from the standard namespace using std::cout; using std::endl; int main(){ cout << "Hello, World!" << endl; }