https://school.programmers.co.kr/learn/courses/30/lessons/120814
#include <string>
#include <vector>
using namespace std;
int solution(int n) {
int answer = 0;
if(n % 7 == 0){
return answer = n / 7 ;
}
else{
return answer = n / 7 + 1;
}
}



#include <string>
#include <vector>
using namespace std;
int solution(int n) {
int answer = (n+6)/7;
return answer;
}