#include\x20
using\x20namespace\x20std;
int\x20main()
{
\x20\x20int\x20n,\x20tot\x20=\x200;
\x20\x20int\x20a[105];
\x20\x20cin\x20>>\x20n;
\x20\x20for\x20(int\x20i\x20=\x201;\x20i\x20<=\x20n;\x20i++)
\x20\x20{
\x20\x20\x20\x20int\x20x;
\x20\x20\x20\x20cin\x20>>\x20x;
\x20\x20\x20\x20if(x\x20%\x202\x20==\x200)
\x20\x20\x20\x20{
\x20\x20\x20\x20\x20\x20tot++;
\x20\x20\x20\x20\x20\x20a[tot]\x20=\x20x;
\x20\x20\x20\x20}
\x20\x20}
\x20\x20cout\x20<<\x20tot\x20<<\x20endl;
\x20\x20for\x20(int\x20i\x20=\x201;\x20i\x20<=\x20tot;\x20i++)
\x20\x20{
\x20\x20\x20\x20cout\x20<<\x20a[i]\x20<<\x20"\x20";
\x20\x20}
\x20\x20return\x200;
}