#include // Bring in all names from std. // This is called a using directive. // Use with care in header files. using namespace std; int main() { cout << "Hello, World!" << endl; }