Skip to content

Instantly share code, notes, and snippets.

@Rahul-Chauhan21
Created January 2, 2021 12:18
Show Gist options
  • Save Rahul-Chauhan21/c8931b18ac4f49d38c006bcc5c036a96 to your computer and use it in GitHub Desktop.
Save Rahul-Chauhan21/c8931b18ac4f49d38c006bcc5c036a96 to your computer and use it in GitHub Desktop.
Starter Code
#include <bits/stdc++.h>
using namespace std;
#define MOD 1000000007
#define ll long long int
#define ld long double
#define pb push_back
#define mkp make_pair
#define pii pair<int, int>
#define pll pair<long long int, long long int>
#define sci(x) scanf("%d", &x)
#define scl(x) scanf("%lld", &x)
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
//Type Code here
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment