Files
codeforces/cpp/617A.cpp
T
2023-03-02 20:58:03 +07:00

19 lines
215 B
C++

#include <iostream>
using namespace std;
int main()
{
unsigned long long int n;
cin >> n;
if (n%5 == 0)
{
cout << n/5;
}
else
{
cout << (n/5 + 1);
}
return 0;
}