Run ID:145554
提交时间:2026-01-25 16:26:16
#include <iostream> #include <algorithm> using namespace std; int main() { int a, b, c; cin >> a >> b >> c; int max_val = max({a, b, c}); cout << "max=" << max_val << endl; return 0; }