#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int a=n/200; int b=25*a; int sum=a-b; cout<<sum; return 0; }