#include <iostream>

using namespace std;

int main()
{
	double x, y, z;
	
	cin >> x >> y >> z;

	cout << int  (x + y + z) / 3;





   return 0;
}