#include <iostream>
using namespace std;
int main()
{
int x, y, z, maxim;
cin >> x >> y >> z;
maxim = x % 10 + x / 10 % 10;
if (y % 10 + y / 10 > maxim)
{
maxim = y % 10 + y / 10;
}
if (z % 10 + z / 10 > maxim)
{
maxim = z % 10 + z / 10;
}
if (maxim == x % 10 + x / 10)
{
cout << x << " ";
}
if (maxim == y % 10 + y / 10)
{
cout << y << " ";
}
if (maxim == z % 10 + z / 10)
{
cout << z << " ";
}
return 0;
}