| Current Path : /var/www/html/venkat/check3/file/cg2013/ |
| Current File : /var/www/html/venkat/check3/file/cg2013/imm2015007_1.c |
#include<stdio.h>
int main()
{
int x,p,i=1,q;
scanf("%d",&x);
scanf("%d",&p);
while(i <= x-1)
{
scanf("%d",&q);
if(q < p)
{
p=q;
}
i++;
}
printf("%d",p);
return 0;
}