Run ID:120988
提交时间:2025-06-02 19:03:00
#include<iostream> #include<cstdio> using namespace std; int main(){ int x,y,z; cin>>x>>y>>z; if(x>y&&x>z){ cout<<x; } if(z>y&&x<z){ cout<<z; } if(x<y&&y>z){ cout<<y; } }