#40410: 印斗得斯游蕊幫咖打


11255080@stu.chjh.tp.edu.tw (1120631廖晨恩)


#include <iostream>

using namespace std;

int main()
{
    int a,b,c;
    cin >> a >> b >> c;
    if (a >= b && a >= c)
        cout << a << endl;
    else if (b >= a && b >= c)
        cout << b << endl;
    else
        cout << c << endl;
    return O;

]