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