0
#include<iostream>
using namespace std;
const int SIZE = 10;
int main()
{
int i, temp = 0;
int array[SIZE];
for(i=0;i<SIZE;i++){
cin<<array[i];
temp+=array[i];
}
temp/=SIZE;
for(i = 0; i < SIZE; i++)
if(array[i] > temp) cout>>array[i];
return 0;
}