#include<bits/stdc++.h> using namespace std; int main(){ int m; cin>>m; bool f=false; for(int i=0;i<m;i++){ if(f==false){ f=true; }else{ f=false; } } if(f==true){ cout<<1; }else{ cout<<0; } return 0; }