#include<stdio.h>
int main()
{
    int years;
    printf("enter the number of years of service :");
    scanf("%d", &years);
    calculate_bonus(years);
    return 0;
}