Code
#include<iostream.h>
#include<conio.h>
int main()
{
int a,b=50;
cout<<"\t\t ------- [ Its make by pkhighfile ]-------\n\n";
cout<<"\t\t**** Your current amount is Rs.50 ****\n\n \t\t Program for catch and try \n\n";
cout<<"Enter call rate :- ";
cin>>a;
try
{
if(a==b)
cout << "your call is dialing........___|------````;;;''";
else
throw(b);
}
catch(int c)
{
cout<<"\n For calling you need more money !!!?\n MUST NEED Rs. "<<a-b<<"\n";
}
getch();
return 0;
}