#include<bits/stdc++.h>
using namespace std;
int n;
int main()
{
    cin>>n;
    if(n%4==0) cout<<n/4<<endl;
    else cout<<n/4+1<<endl;
}

0 comments

No comments so far...