/* PROGRAM ON BONUS */
#include<stdio.h>
#include<conio.h>
main()
{
int cur_yr,join_yr,ser_yr,bonus;
printf("Enter the current year and the year of joining\n");
scanf("%d%d",& cur_yr,&join_yr);
ser_yr=cur_yr-join_yr;
if(ser_yr>3)
{bonus=2500;
printf("Bonus=Rs.%d\n",bonus);}
else
exit(0);
getch();
}


