#include using namespace std ; int add( int num1, int num2 ) ; int main() { int ret = add( 3 , 4 ) ; cout << ret << endl ; return(0) ; }