#include <iostream> using namespace std; int main( ) { cout << "Hello World\n"; cout << "3 times 4 is " << 3 * 4 << "!\n"; return 0; }