#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <math.h>
using namespace std;
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
int year;
cin >> year;
if (year%4==0&&(year%100!=0||year%400==0))
{
cout << '1';
}
else
{
cout << '0';
}
}