#include<iostream> using namespace std; int main(){ int m; cin >> m; if(m%2==0){ cout << "0" << endl; } else{ cout << "1" << endl; } return 0; }