Skip to content

Instantly share code, notes, and snippets.

@SubhrajyotiSen
Last active January 22, 2018 06:17
Show Gist options
  • Save SubhrajyotiSen/6588ddeee305260667916f70dcc265f3 to your computer and use it in GitHub Desktop.
Save SubhrajyotiSen/6588ddeee305260667916f70dcc265f3 to your computer and use it in GitHub Desktop.
#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