| Current Path : /var/www/html/venkat/check3/file/cg2013/ |
| Current File : /var/www/html/venkat/check3/file/cg2013/iec2015087_1.c |
#include<stdio.h>
int main()
{
int a,b,d;
scanf("%d",&a);
while(a!=0){
b=a%10;
a=a/10;
d=b;
break;
}
if(b<d)
printf("%d",b);
return 0;
}