#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
int n,b=0;
while(cin>>n)
{
if(n%4==0&&n%100!=0||n%400==0)
{
cout<<"This is leap year."<<endl;
b=1;
}
if(n%15==0)
{
cout<<"This is huluculu festival year."<<endl;
b=1;
}
if(n%4==0&&n%100!=0&&n%55==0||n%400==0&&n%55==0)
{
cout<<"This is bulukulu festival year."<<endl;
b=1;
}
else if(b!=1)
{
cout<<"This is an ordinary year."<<endl;
}
}
}