Задача №142
#include <iostream>
#include "cmath"
using namespace std;
int main()
{
int x;
cin >> x;
if (x % 4 == 0)
{
cout <<"Год высокосный";
}
else
{
cout <<"Год невысокосный"<< endl;
}
return 0;
}INFO