#include<iostream> using namespace std; int main(){ int a,b=0; for(int i=1;i<=7;i++){ cin>>a; b += a; } cout<<b/7; return 0; }