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