#include<iostream.h>
#include<conio.h>
int main()
{
int n, i, num, a, small;
clrscr();
cout<<"Enter the first integer : ";
cin>>num;
cout<<"Enter the remaining "<<num<<" integers : ";
small = num;
for (i=1; i<=num; i++)
{
cin>>n;
if (n < small )
{
small = n ;
}
}
cout<<"The smallest of the entered number is : "<<small;
getch();
return 0;
}