← Back to List

15727번: 조별과제를 하려는데 조장이 사라졌다 ↗

Solutions

C++14
108 B | 108 chars
#include <iostream>
using namespace std;
int N,S;
int main()
{
	cin>>N;
	S=N/5;
	if(N%5!=0) S++;
	cout<<S;
}