Created
January 2, 2021 12:18
-
-
Save Rahul-Chauhan21/c8931b18ac4f49d38c006bcc5c036a96 to your computer and use it in GitHub Desktop.
Starter Code
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; | |
#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