fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. using ll = long long;
  5.  
  6. #define loop(i, a, b) for (int (i) = (a); (i) < (b); (i)++)
  7.  
  8. void solve() {
  9.  
  10. }
  11.  
  12. int main() {
  13. ios::sync_with_stdio(false);
  14. cin.tie(nullptr);
  15. int t;
  16. cin >> t;
  17. while (t--) solve();
  18. }
Success #stdin #stdout 0.01s 5284KB
stdin
1
stdout
Standard output is empty