// hello.cpp // Description: a program that prints the immortal saying "hello world" include <iostream> using namespace std; int main() { cout << "Hello World!" << endl; return 0; }