sol.cpp 304 B

123456789101112131415161718192021
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define endl '\n'
  4. typedef long long int64;
  5. typedef pair<int,int> pii;
  6. typedef vector<int> vi;
  7. const double eps = 1e-9;
  8. const int oo = 0x3f3f3f3f;
  9. const int mod = 1000000007;
  10. int main(){
  11. ios_base::sync_with_stdio(0);
  12. cin.tie(0);
  13. return 0;
  14. }