Advertisement
kot_mapku3

1 G

Jun 2nd, 2020
423
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(){
  6.   int t,c;
  7.   cin >> t >> c;
  8.  
  9.   if (t < c) cout << 2;
  10.   else cout << 1;
  11.  
  12.   return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement