#include using namespace std; int main() { double total = 0; for(size_t i = 0; i < 5; ++i) { double tmp; cin >> tmp; if(tmp >= 0 && tmp <= 80) total += tmp; } cout << total / 5; return 0; }