提交时间:2025-10-17 15:28:50
运行 ID: 70359
#include <iostream> #include <algorithm> using namespace std; int main() { int a, b, c; cin >> a >> b >> c; cout << max({a, b, c}) << endl; return 0; }