#53714: "真"一行版


s310177@student.cysh.cy.edu.tw (林子鈞)


#include <bits/stdc++.h>

using namespace std;

int main() {
    int y;cin >> y;(y % 4 == 0) && (y % 100 != 0) || (y % 400 == 0) ? cout << "a leap year": cout << "a normal year";

}