#include <iostream> using namespace std; int main(){ int a,b,c,x; cin>>x; a=x%10; b=x/10%10; c=x/100; cout<<max(a,max(b,c)); return 0; }