From 5c71f0bbddad2d6a682b860226dcea8ae51a8036 Mon Sep 17 00:00:00 2001 From: Philippe Zwietering Date: Sat, 30 Oct 2021 21:46:56 +0200 Subject: [PATCH] Changed the base to include all includes --- base.cpp | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) 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