#include <iostream>
#include <cstdlib>

using namespace std;

int foo() {
	cout << " computing ... " << endl;
	return 4;
}

int main() {
	int tmp = foo();
	cout << "2 + 2 = " << tmp << endl;
	return EXIT_SUCCESS;
}