diff --git a/base.cpp b/base.cpp index 66d7065..0c03bec 100644 --- a/base.cpp +++ b/base.cpp @@ -1,11 +1,10 @@ -#include -#include -#include -#include +#include using namespace std; +void test_case(int tc){ +} @@ -13,5 +12,14 @@ int main(){ ios::sync_with_stdio(0); cin.tie(0); + int t; + cin >> t; + + for(int tc = 1; tc <= t; ++tc){ + test_case(tc); + } + + cout << flush; + return 0; } \ No newline at end of file