Write a program to compute the net pay of an employee.it should allow one to read the deposit number,account name,amount deposited,and yesr.check if amount>5000 and year>3 and calculate interest at the rate of0.18.else if amount==5000 and year<==3 interest rate is calculated at 0.1.if amount<5000,interest is calculated at the rate of 0.7.interest=(amount*rate*year) net=amount+interest and print the net.