void main()
{
const int size=20;
int i=1;
int num[size]={0};
int arrayElement;
int counter=0;
int z=0;
while(i<=10)
{
cout<<"enter number";
cin>>arrayElement;
if(i==0)
num[0]=arrayElement;
else{
for(int j=0;j<size;j++)
{
if(num[j]==arrayElement)
z=1;
}
if (z==0){