1 2 3 4 5 6
#include <iostream> int add(int a, int b) { std::cout << "Adding numbers" << std::endl; return a + b; }