Advertisement
yejolga

ol_2_16

Nov 1st, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. //#include <string>
  4. //#include <vector>
  5. //#include <cmath>
  6.  
  7. //#define n 3
  8.  
  9. using namespace std;
  10.  
  11. int main()
  12. {
  13.     //ifstream cin("input.txt");
  14.  
  15.     long n, m;
  16.     cin>>n>>m;
  17.     if (n>m)
  18.         cout<<m;
  19.     else
  20.         cout<<min(n*2, m);
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement