#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
int a[3];
//有內建函式可用
cin>>a[0]>>a[1]>>a[2];
sort(a,a+3);
cout<<a[2];
}