Advertisement
Bassel_11

Untitled

Mar 12th, 2023
641
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.24 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. #define ll long long
  3. #define Time cerr << "Time Taken: " << (float)clock() / CLOCKS_PER_SEC << " Secs" \<< "\n";
  4. #define ln cout << endl;
  5. #define c(n) cout << n;
  6. #define fix cout << fixed << setprecision(6);
  7. #define sz(x) int(x.size())
  8. #define loop(n) for (int i = 0; i < n; i++)
  9. #define loop1(n) for (int i = 1; i <= n; i++)
  10. #define cn(arr, n)              \
  11.     for (int i = 0; i < n; i++) \
  12.     {                           \
  13.         cin >> arr[i];          \
  14.     }
  15. #define vi vector<int>
  16. #define vll vector<long long>
  17. #define all(s) s.begin(), s.end()
  18. #define srt(arr, n) sort(arr, arr + n);
  19. #define prefixsum(arr, n)        \
  20.     for (int i = 1; i <= n; i++) \
  21.     {                            \
  22.         arr[i] += arr[i - 1];    \
  23.     }
  24. #define upper(s) transform(all(s), s.begin(), ::toupper);
  25. #define lower(s) transform(all(s), s.begin(), ::tolower);
  26. #define pi 3.141592653
  27. #define pb push_back
  28. #define vc vector<char>
  29.  
  30. using namespace std;
  31.  
  32. void Bassel()
  33. {
  34.     ios_base::sync_with_stdio(false), cin.tie(0), cout.tie(0);
  35. #ifndef ONLINE_JUDGE
  36.     freopen("input.txt", "r", stdin), freopen("output.txt", "w", stdout);
  37. #endif
  38. }
  39.  
  40. int main()
  41. {
  42.     Bassel();
  43.     cout << "test";
  44.    
  45.     return 0;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement