#include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL, "RUS");
int x;
cin >> x;
if (x % 4 == 0) {
cout << "Високосный";
}
else
cout << "Не високосный";
#include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL, "RUS");
int x;
cin >> x;
if (x % 4 == 0) {
cout << "Високосный";
}
else
{
cout << "Не високосный";
}
}