Last active
April 24, 2020 23:19
-
-
Save alisolanki/8ce20bb0c465bdd8c121a0ad9f3b8214 to your computer and use it in GitHub Desktop.
C++ template
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
| //Author: Mohd. Ali Solanki | |
| #include <bits/stdc++.h> | |
| #define MOD 1000000007 | |
| using namespace std; | |
| typedef long long ll; | |
| typedef unsigned long long int ull; | |
| int main(){ | |
| int T; | |
| scanf("%d", &T); | |
| while(T--){ | |
| int N; | |
| scanf("%d", &N); | |
| } | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment