Information
- ID
- 1283
- Time
- 1000ms
- Memory
- 128MiB
- Difficulty
- 10
- Tags
- # Submissions
- 2
- Accepted
- 2
- Uploaded By
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b,c;
cin>>a>>b>>c;
if(a>b&&a>c){
cout<<a;
}
else if(b>c&&b>a){
cout<<b;
}
else if(b<c&&b<c){
cout<<c;
}
return 0;
}
By signing up a Hydro universal account, you can submit code and join discussions in all online judging services provided by us.