#include using std::cout; using std::endl; int main() { cout << "Hello, "; cout << "world!"; cout << endl; // this is a newline, like '\n' // but with a "buffer flush" return 0; }