x=int(input())
if x>=5:
    if x%5==0:
        res=int(x/5)
    else:
        res=int(x/5)+1
else:
    res=1#一步到位
print(res)