// editor3
#include<stdio.h>
int main(){
    int years;
    scanf("%d",&years);
    if (years<6){ 
        printf("5% Bonus if the service is between 1 and 5 years");
    }else if(years<=10){
        printf("10% Bonus if the service is between 6 to 10 years");
    }    
    else {
        printf("15% Bonus if the service is more the 10 years ");
    } 
    return 0;
    
}