fork download
  1. // CODE__ANTI__MOSS
  2. #include <bits/stdc++.h>
  3. #define buffspeed ios_base::sync_with_stdio(false);\
  4.   cin.tie(0);\
  5.   cout.tie(0)
  6. #define fopenn(tenfile) if(fopen(tenfile".inp","r")){\
  7.   freopen (tenfile".inp","r",stdin);\
  8.   freopen (tenfile".out","w",stdout);\
  9.   }
  10. #pragma GCC optimize("O3,unroll-loops,no-stack-protector")
  11. #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
  12. #define compile (1.0 clock() / CLOCKS_PER_SEC)
  13. #pragma GCC optimize("O3,unroll-loops")
  14. #pragma GCC target("sse4,avx2,fma")
  15. #define int long long
  16. #define __DEPTRAIVCL__ signed main()
  17. #define skibidi dopdop
  18. using namespace std;
  19. // SPEED GOD
  20. /*
  21. static struct FastInput {
  22.   static constexpr int BUF_SIZE = 1 << 20;
  23.   char buf[BUF_SIZE];
  24.   size_t chars_read = 0;
  25.   size_t buf_pos = 0;
  26.   FILE *in = stdin;
  27.   char cur = 0;
  28.  
  29.   inline char get_char() {
  30.   if (buf_pos >= chars_read) {
  31.   chars_read = fread(buf, 1, BUF_SIZE, in);
  32.   buf_pos = 0;
  33.   buf[0] = (chars_read == 0 ? -1 : buf[0]);
  34.   }
  35.   return cur = buf[buf_pos++];
  36.   }
  37.  
  38.   inline void tie(int) {}
  39.  
  40.   inline explicit operator bool() {
  41.   return cur != -1;
  42.   }
  43.  
  44.   inline static bool is_blank(char c) {
  45.   return c <= ' ';
  46.   }
  47.  
  48.   inline bool skip_blanks() {
  49.   while (is_blank(cur) && cur != -1) {
  50.   get_char();
  51.   }
  52.   return cur != -1;
  53.   }
  54.  
  55.   inline FastInput& operator>>(char& c) {
  56.   skip_blanks();
  57.   c = cur;
  58.   return *this;
  59.   }
  60.  
  61.   inline FastInput& operator>>(string& s) {
  62.   if (skip_blanks()) {
  63.   s.clear();
  64.   do {
  65.   s += cur;
  66.   } while (!is_blank(get_char()));
  67.   }
  68.   return *this;
  69.   }
  70.  
  71.   template <typename T>
  72.   inline FastInput& read_integer(T& n) {
  73.   n = 0;
  74.   if (skip_blanks()) {
  75.   int sign = +1;
  76.   if (cur == '-') {
  77.   sign = -1;
  78.   get_char();
  79.   }
  80.   do {
  81.   n += n + (n << 3) + cur - '0';
  82.   } while (!is_blank(get_char()));
  83.   n *= sign;
  84.   }
  85.   return *this;
  86.   }
  87.  
  88.   template <typename T>
  89.   inline typename enable_if<is_integral<T>::value, FastInput&>::type operator>>(T& n) {
  90.   return read_integer(n);
  91.   }
  92.  
  93.   #if !defined(_WIN32) | defined(_WIN64)
  94.   inline FastInput& operator>>(__int128& n) {
  95.   return read_integer(n);
  96.   }
  97.   #endif
  98.  
  99.   template <typename T>
  100.   inline typename enable_if<is_floating_point<T>::value, FastInput&>::type operator>>(T& n) {
  101.   n = 0;
  102.   if (skip_blanks()) {
  103.   string s;
  104.   (*this) >> s;
  105.   sscanf(s.c_str(), "%lf", &n);
  106.   }
  107.   return *this;
  108.   }
  109. } fast_input;
  110. #define cin fast_input
  111. */
  112. void skibidiinput(){
  113.  
  114. }
  115. void AC(){
  116.  
  117. }
  118. void skibidioutput(){
  119.  
  120. }
  121. __DEPTRAIVCL__{
  122. //skibidi
  123. buffspeed;
  124. fopenn("");
  125. skibidiinput();
  126. skibidioutput();
  127. //🦆🦆🦆🦆
  128. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty