Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.54 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. #define pb push_back
  5. #define f first
  6. #define s second
  7. #define mp make_pair
  8. #define ll long long
  9.  
  10. #define MAXN 200005
  11. #define INF 1000000009
  12. #define MOD 1000000007
  13.  
  14.  
  15. void solve(){
  16.     int a, b;
  17.     cin >> a >> b;
  18.     cout << "1\n";
  19. }
  20.  
  21. int main(){
  22.     ios_base::sync_with_stdio(0);
  23.     cin.tie(0);
  24.     cout.tie(0);
  25.  
  26.     int tests = 1;
  27.  
  28. #ifdef LOCAL
  29.     bool a;
  30.     a = freopen("in.data", "r", stdin);
  31.     a = freopen("out.data", "w", stdout);
  32. #endif
  33.     cin >> tests;
  34.  
  35.     while(tests--)
  36.         solve();
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement