Skip to content

Instantly share code, notes, and snippets.

@Sama-004
Created June 24, 2024 06:08
Show Gist options
  • Save Sama-004/3e18ebce06862dae513fa97dbe280466 to your computer and use it in GitHub Desktop.
Save Sama-004/3e18ebce06862dae513fa97dbe280466 to your computer and use it in GitHub Desktop.
#include <bits/stdc++.h>
using namespace std;
#define nl cout << '\n'
#define F first
#define S second
#define PB push_back
#define MP make_pair
#define rep(i, n) for (int i = 0; i < (n); i++)
typedef long long ll;
typedef vector<int> vi;
typedef vector<long long> vl;
typedef pair<int, int> pi;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment