提交时间:2024-02-23 19:30:30
运行 ID: 90137
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f; cin>>a>>b>>c; d=max(a,b); e=max(b,c); f=max(d,e); cout<<f; return 0; }