Created
August 5, 2026 19:42
-
-
Save raiyansarker/5e733496ce2697216d2e85b15c343c4e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <bits/stdc++.h> | |
| using namespace std; | |
| using ll = long long; | |
| using vi = vector<int>; | |
| using vll = vector<ll>; | |
| #define __lcm(a, b) (1LL * ((a) / __gcd((a), (b))) * (b)) | |
| #define all(x) (x).begin(),(x).end() | |
| #define pb push_back | |
| #define mp make_pair | |
| #define endl '\n' | |
| #ifdef LOCAL | |
| #define debug(x) cerr << #x << " = " << x << '\n' | |
| #else | |
| #define debug(x) | |
| #endif | |
| int main() { | |
| ios::sync_with_stdio(false); | |
| cin.tie(nullptr); | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment