Last active
December 29, 2021 09:56
-
-
Save SUPERustam/041cb093e32843af24ab53b85dc4d8c9 to your computer and use it in GitHub Desktop.
This file contains 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> | |
/* #include <algorithm> // special functions */ | |
/* #include <cmath> */ | |
/* #include <iostream> */ | |
/* #include <map> */ | |
/* #include <set> */ | |
/* #include <string> */ | |
/* #include <vector> */ | |
#define pb push_back | |
#define in insert | |
#define all(x) x.begin(), x.end() | |
#define ll long long | |
using namespace std; | |
ll n, m, h, k, p, q, t, a, b, c, d, e, x, y, z; | |
signed main() { | |
ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0); | |
vector<ll> v; | |
cin >> n >> m; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment