fork download
  1. #include <bits/stdc++.h>
  2. #define int long long
  3. using namespace std;
  4.  
  5. // -- Khai báo biến ở đây --
  6. // const int MAX = 1e5 + 7
  7. // int n, a[MAX];
  8. // --------------------------
  9.  
  10.  
  11. // -- Khai báo các hàm ở đây --
  12. // bool cmp(int a_L, int a_R) {
  13. // return a_L > a_R;
  14. // }
  15. // ----------------------------
  16.  
  17. int32_t main() {
  18. ios_base::sync_with_stdio(0);
  19. cin.tie(0), cout.tie(0);
  20.  
  21. // -- Code chính ở đây --
  22. // sort(a, a + n, cmp);
  23. // ----------------------
  24.  
  25. return 0;
  26. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
Standard output is empty