asgarlikanan

https://www.e-olymp.com/az/problems/108

Aug 15th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
4CS 0.24 KB | None | 0 0
  1. /*
  2.     Author: Kanan Asgarli
  3.     https://www.e-olymp.com/az/problems/108
  4. */
  5. #include <iostream>
  6. #include <algorithm>
  7. using namespace std;
  8. int a[3];
  9. int main()
  10. {
  11.     cin>>a[0]>>a[1]>>a[2];
  12.     sort(a,a+3);
  13.     cout<<a[1]<<endl;
  14.     return 0;
  15. }
Add Comment
Please, Sign In to add comment