c++/gcc 730
#include <iostream>
#include <algorithm>
int main()
{
int K, L, A;
std::cin >> K >> L >> A;
std::cout << std::max({K, L, A}) << std::endl;
return 0;
}
c++/gcc 730
#include <iostream>
#include <algorithm>
int main()
{
int K, L, A;
std::cin >> K >> L >> A;
std::cout << std::max({K, L, A}) << std::endl;
return 0;
}