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