#include <iostream>
using namespace std;

int main() {

    int a, b, c;
    int max = 0;

    cin >> a;
    cin >> b;
    cin >> c;

    // write your code here......
    max = a > b ? a : b;
    max = max > c ? max : c;

    cout << max << endl;

    return 0;
}