#include <iostream.h>
#include<conio.h>
void main ( )
{
int a[50], i, n;
clrscr();
cout<<"\n How Many Number You Want to Enter : ";
cin>>n;
cout<<"\nEnter the "<<n<<" Different Elements in the Array : ";
for (i=1; i<=n; i++)
{
cin>>a[i];
}
cout<<"\nDifferent Array Elements are : \n ";
for (i=1; i<=n; i++)
{
cout<<a[i] << " ";
}
getch();
}