Your IP : 216.73.216.40


Current Path : /var/www/html/venkat/check3/file/cg2013/
Upload File :
Current File : /var/www/html/venkat/check3/file/cg2013/rit2015003_1.c

#include <stdio.h>
int main()
{
	int max,i,rem,n;
	scanf("%d",&n);
	max = n % 10;
	while (n > 0)
	{
		rem = n % 10;
		n = n/10;
		if (rem > max)
			max = rem;
	}
	printf("%d",max);
	return 0;
}