Skip to content

Instantly share code, notes, and snippets.

@hucancode
Created October 12, 2022 13:14
Show Gist options
  • Save hucancode/b57d7780d442b4e1b1754becb22550ac to your computer and use it in GitHub Desktop.
Save hucancode/b57d7780d442b4e1b1754becb22550ac to your computer and use it in GitHub Desktop.
codeforces template
#include <bits/stdc++.h>
using namespace std;
void solve() {
}
int main() {
int t;
cin>>t;
while(t--) {
solve();
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment