Changed the base to include all includes

This commit is contained in:
2021-10-30 21:46:56 +02:00
parent 38ad5e4d1f
commit 5c71f0bbdd

View File

@@ -1,11 +1,10 @@
#include <iostream> #include <bits/stdc++.h>
#include <string>
#include <vector>
#include <cmath>
using namespace std; using namespace std;
void test_case(int tc){
}
@@ -13,5 +12,14 @@ int main(){
ios::sync_with_stdio(0); ios::sync_with_stdio(0);
cin.tie(0); cin.tie(0);
int t;
cin >> t;
for(int tc = 1; tc <= t; ++tc){
test_case(tc);
}
cout << flush;
return 0; return 0;
} }