#include<bits/stdc++.h> using namespace std; int main(){ int n,i=0; cin>>n; double m=n; while(m>0){ m=m-2.95; i=i+1; } cout<<i; return 0;}