#include <iostream>#include <cstdlib> using namespace std; int foo() { cout << " computing ... " << endl; return 4;} int main() { cout << "2 + 2 = " << foo() << endl; return EXIT_SUCCESS;}