/******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
*******************************************************************************/
#include <iostream>
using namespace std;
int main()
{
int MomAge = 34;
int SonAge = 56;
try {
if (SonAge > MomAge) {
throw 99;
}
} catch (int x) {
cout << "Son's age is greater than Mom's, and the error returned is " << x << endl;
}
return 0;
}