mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 22:11:55 +00:00
19 lines
215 B
C++
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;
|
|
}
|