4593: 闰年判断
[Creator : ]
Description
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
if ( ) {
if ( ) cout << 1;
else cout << 0;
} else {
if ( ) cout << 1;
else cout << 0;
}
return 0;
}
Sample Input Copy
2024
Sample Output Copy
1