Відповідь:
#include <iostream>
using namespace std;
int main(){
int year;
cout << "Enter year: ";
cin >> year;
if(year % 4 == 0){
cout << "YES" << endl;
}
else{
cout << "NO" << endl;
return 0;