#include <conio.h>
#include <stdio.h>
int main()
{
int a[10];
for(int x=0; x<10; x++)
{
scanf("%d",&a[x]);
}
printf("\n\nODD EVEN\n");
for( int i = 0; i < 10; i++ )
{
if(a[i]%2==0)
{
printf("\t%d\n",a[i]);
}
if(a[i]%2==1)
{
printf("%d",a[i]);
}
}
getch();
}