predict the output:#include iostream
using namespace std;
int sum(int a, int b ) {
int result;
result = a + b;
return (result);
}
int main () {
int a ;
int b ;
int result;
cout"enter the value of a and b"endl;
cinab;
result = sum(a, b);
cout "Total value is :" result endl;
return 0;
}
Take input : 60 80