summaryrefslogtreecommitdiffstats
path: root/19/cpp/01-1.cpp
blob: fcb593ac43df048d3f4638f6969392c88b561227 (plain) (blame)
1
2
3
4
5
6
7
8
#include<iostream>

int main() {
	int mass, sum = 0;
	while (std::cin >> mass) sum += (mass / 3) - 2;
	std::cout << sum << std::endl;
}