#include<iostream>
#include<string>
using namespace std;
int main()
{
int z, array[z], n,integer,f;
cout<<"Upto how many nos?"<<endl;
cin>>z;
cout<<"Enter The Numbers"<<endl;
for(n=0;n<z;n++)
{cin>>integer;
array[n]=integer;
}
for(n=0;n<z;n++)
{if ( array[n] % 2== 0 )
cout << array[n]<< " is even "
<<endl;
else
cout << array[n]<< " is odd "
<<endl;}
system("pause");
return 0;
}