fork download
  1. #include <bits/stdc++.h>
  2. #define ll long long
  3.  
  4. using namespace std;
  5.  
  6. const int MOD = 1e9 + 7;
  7.  
  8. void solve(){
  9.  
  10. }
  11.  
  12. int main(){
  13. ios_base::sync_with_stdio(false);
  14. cin.tie(nullptr);
  15.  
  16. int t = 1;
  17. cin >> t;
  18.  
  19. for(int i = 1; i <= t; i++){
  20. solve();
  21. }
  22. return 0;
  23. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
Standard output is empty