#include using namespace std; bool is_leap_year(int year) { if(!(year - (year/100)*100)) { if(!((year/100)%4)) { return true; } return false; } if(!(year%4)) { return true; } return false; } int main() { /* int a; cin >> a; if(is_leap_year(a)) { cout << "TRUE" << endl; } else { cout << "FALSE" << endl; } return 0; */ }