Codeforces-SolutionsA/Codes/617A Elephant/617A.cpp

11 lines
168 B
C++
Raw Normal View History

2023-06-07 22:15:25 +08:00
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n,i=5,count=0;
cin>>n;
2023-11-14 15:31:12 +08:00
if(n%5)
cout<<n/5+1<<endl;
else
cout<<n/5<<endl;
2023-06-07 22:15:25 +08:00
}