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