#include <iostream>
using namespace std;

int main() {
	float a=12;
	float b=14;
	float c=18;
	float srednia=(a+b+c)/3;
	cout<<srednia;
	return 0;
}