# C++ ```c using namespace std void add_numbers(int a, int b){ return a + b; } int main() { cout << add_numbers(5, 10) << endl; } ```