#include <iostream>
using namespace std;

int main() {
    
    int a, b, c;
    cin >> a;
    cin >> b;
    cin >> c;

    // write your code here......
    int max = a > b ? a : b;
    max = max > c ? max : c;
    cout << max << endl;
    return 0;
}