#include <iostream> using namespace std; int main() { int x, t; t = 0; cin >> x; t = x / 5; if (x%5!=0) { t += 1; } cout << t; }