#include using namespace std ; int sum( int x1, int x2 ) { return x1+x2 ; } int main() { cout << sum( 2, 3 ) << endl ; }