#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
long int per_month,yearly,tax;
cout<<"Enter your per month income ::";
cin>>per_month;
tax=per_month*10/100;
per_month=per_month-tax;
yearly=per_month*12;
cout<<"Your monthly income after deducting annual
tax is "<<yearly;
getch();
}