asgarlikanan

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

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