#include<iostream>
#include<iomanip>

using namespace std;

int main()
{
	int a, b, c, d, e;
	std::cin >> a >> b >> c >> d >> e;
	double avg;
	avg = (a + b + c + d + e) / 5.0;
	std::cout << setiosflags(ios::fixed);
	std::cout << setprecision(1) << avg;

	return 0;
}