Start 2024-01-27 14:30:00

1.27下午课前复习

End 2024-01-27 17:00:00
Contest is over.
Now 2026-04-30 20:08:05

A

include<bits/stdc++.h>

using namespace std; int main(){

int year;
cin>>year;
if(year%4==0&&year%100!=0||year%400==0)
{
	cout<<"Y";
}
else cout<<"N";
return 0;

}


hhdxxf_hhdxxf  •  2年前

The contest has ended.