Skip to content

Instantly share code, notes, and snippets.

@raiyansarker
Created August 5, 2026 19:42
Show Gist options
  • Select an option

  • Save raiyansarker/5e733496ce2697216d2e85b15c343c4e to your computer and use it in GitHub Desktop.

Select an option

Save raiyansarker/5e733496ce2697216d2e85b15c343c4e to your computer and use it in GitHub Desktop.
#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