Run ID:145688

提交时间:2026-01-25 18:05:49

#include <iostream> #include <algorithm> int main() { int a, b, c; std::cin >> a >> b >> c; std::cout << std::max({a, b, c}) << std::endl; return 0; }