#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
#define FAST ios::sync_with_stdio(0), cin.tie(0), cout.tie(0)
#define ll long long
#define ld long double
#define int long long
#define endl "\n"
#define yes cout << "YES" << endl;
#define no cout << "NO" << endl;
#define pb push_back

using namespace std;
const int MOD = 1e9+7;
//const int MOD = 998244353;
const int N = 1e5+5;
const ll INF = 1e18;
const ll MIN = -1e18;

typedef tree<ll, null_type, less<ll>, rb_tree_tag, tree_order_statistics_node_update> indexed_set;

void solve(int t) {
    string filename = "output" + to_string(t) + ".txt";
    freopen(filename.c_str(), "w", stdout);  // Convert string to C-style string
    cout << "Processing test case: " << t << endl;
    fclose(stdout);  // Close the file to restore standard output
}

signed main() {
    FAST;
    ll t = 100;
    while (t--) solve(t);
}
