// This is what the Hello World program would have to look like if we left // out the "using" statement #include int main() { std::cout << "Hello, "; std::cout << "world!"; std::cout << '\n'; return 0; }