#include <iostream>

using namespace std;

#define PRINT_STRING(s) cout << (#s) << endl;

int main() {
	cout << "foo(\"hello\", \"world\", 5)" << endl;
	PRINT_STRING(foo("hello", "world", 5))
	return 0;
}