>>106518844
int
f(const int *a, int n) {
int x = 0;
for (i = 0; i < n; i++)
if (a[i]%2 == 0 && a[i] < 100)
x += a[i]*a[i];
return x;
}