#include <iostream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <cmath>
using namespace std;
int main()
{
freopen("xcoins.in","r",stdin);
freopen("xcoins.out","w",stdout);
long long x;
scanf("%lld",&x);
long long t=0;
if (x==5) t=1;
else if (x==6) t=6;
else if (x==7) t=3;
else if (x==8) t=4;
else if (x==9) t=3;
else if (x==10) t=2;
else if (x==11) t=3;
else if (x==12) t=4;
else if (x==13) t=3;
else if (x==14) t=4;
else if (x==15) t=3;
else
{
t=x/5;
if (x % 5!=0)
{
if (x % 5==1 || x%5==3) t+=1;
else t+=2;
}
}
printf("%lld\n",t);
return 0;
}