Run ID:4619
提交时间:2024-08-24 15:26:21
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a>b>c){ cout<<"max="<<a<<endl; } else if(b>c>a){ cout<<"max="<<b<<endl; } else{ cout<<"max="<<c<<endl; } }