#include<bits/stdc++.h> using namespace std; int main(void) { int a,N; cin>>a; N=a-10; if(N>=0) cout<<"1"; else if(N<0) cout<<"0"; return 0; }