fork download
  1. //
  2. //
  3. //
  4. //
  5. // Created by Krish Narsaria on //.
  6. //
  7.  
  8. #include <bits/stdc++.h>
  9. #include <string.h>
  10. using namespace std;
  11. #define ll long long
  12. #define f(i,n) for(ll i = 0; i < n; i++)
  13. #define in(a,n) ll a[n]; f(i,n) cin >> a[i]
  14. #define MOD 1000000007
  15. void solve(){
  16.  
  17. }
  18.  
  19. int main() {
  20. ios_base::sync_with_stdio(false);
  21. cin.tie(NULL);
  22. cout.tie(NULL);
  23. int t;
  24. cin>>t;
  25. while(t--)solve();
  26. return 0;
  27. }
Success #stdin #stdout 0.01s 5272KB
stdin
Standard input is empty
stdout
Standard output is empty