#include<iostream> using namespace std; int main() {
int n,y; while(cin>>y){ if(y%4==0 && y%100!=0 || y%400==0) cout<<"This is leap year."<<endl; else if(y%15==0) cout<<"This is huluculu festival year."<<endl; else cout<<"This is an ordinary year."<<endl; } system("pause"); return 0; }