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