Run ID:1464

提交时间:2023-09-30 17:48:38

#include<iostream> using namespace std; int main(){ long long a,b,c,t; cin>>a>>b>>c; if(a>b){ t=a; } else{ t=b; } if(t>c){ cout<<t<<endl; } else{ cout<<c<<endl; } return 0; }