Run ID:116293
提交时间:2025-04-07 20:46:47
#include <iostream> using namespace std; int main(){ int year; cin>>year; if (year % 400 == 0){ cout<<year<<" Yes"; } else{ cout<<year<<" No"; } return 0; }