Guest User

Untitled

a guest
Jul 16th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int a,b,c;
  6. cin>>a>>b>>c;
  7. if(a>=b&&a>=c)
  8. cout<<a;
  9. else
  10. if(b>=a&&b>=c)
  11. cout<<b;
  12. else
  13. cout<<c;
  14. return 0;
  15. }
Add Comment
Please, Sign In to add comment