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