开始 2024-01-27 14:30:00

1.27下午课前复习

结束 2024-01-27 17:00:00
Contest is over.
当前 2025-05-03 19:05:03

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  •  1年前

比赛已结束。