#include <iostream>
#include <cmath>

using namespace std;

int main() {
    int x;
    cin >> x;
    cout << ceil(x / 5.0);
    return 0;
}