Last active
January 22, 2018 06:17
-
-
Save SubhrajyotiSen/6588ddeee305260667916f70dcc265f3 to your computer and use it in GitHub Desktop.
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 FOR(i,n,a) for(int i=a;i<=n;i++) | |
#define FORN(i,n,a) for(int i=a;i<n;i++) | |
typedef long long ll; | |
int main() { | |
ios_base::sync_with_stdio(false); | |
cin.tie(0); | |
int t; | |
cin>>t; | |
while(t--) { | |
//code goes here | |
cout<<"\n"; | |
} | |
return 0; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment