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