#include int add_3(int cx) { return 2 + cx; } int main() { std::cout << "Hello, world!" << add_3(5) << std::endl; return 0; }