#include<iostream> using namespace std; int main() { int k; cin>>k; if(10<=k&&k<=99) { cout<<"1"; } else { cout<<"0"; } return 0; }