diff --git a/Contest Template/main.cpp b/Contest Template/main.cpp index 826d48b..e0c2f32 100644 --- a/Contest Template/main.cpp +++ b/Contest Template/main.cpp @@ -33,9 +33,9 @@ int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int tc = 1; - // cin >> tc; + cin >> tc; for (int t = 1; t <= tc; t++) { - // cout << "Case #" << t << ": "; + solve(); } -} \ No newline at end of file +}