Your IP : 216.73.216.40


Current Path : /var/www/html/venkat/check3/file/rgiit/
Upload File :
Current File : /var/www/html/venkat/check3/file/rgiit/rit2015027_1.c

#include <stdio.h>

int main ()
{	
	long int n;
	int a, s=0;
	scanf ( "%ld", &n);
	while ( n > 0 )
	{	
		a = n % 10;
		if ( a > s)
			s = a;
		n = n / 10;
	}
	printf ( "%d\n", s);
	return 0;
}