1. 4
2. 3 653 479 123
#include <iostream>
int main()
{
int n, nr1=0, nr2=0, t, x, y, z;
std::cin >> n;
for(int i = 0; i < n; ++i)
{
std::cin >> x;
y = x; z = 0; t = 0;
while(y)
{
if(y % 10 % 2 == 1)
{
z = z * 10 + y % 10;
t = 1;
}
y /= 10;
}
if(x == z)
++nr1;
else if (!t)
++nr2;
}
std::cout << (nr1+nr2);
}