Codeforces-SolutionsA/617A Elephant/617A.cpp
ShazidMahsrafi ea48e963de update code
2023-11-14 13:31:12 +06:00

11 lines
168 B
C++

#include <bits/stdc++.h>
using namespace std;
int main()
{
int n,i=5,count=0;
cin>>n;
if(n%5)
cout<<n/5+1<<endl;
else
cout<<n/5<<endl;
}