#include<bits/stdc++.h>
using namespace std;
namespace inout {
struct IO {
std::string name;
ofstream fout;
IO (std::string _name, int data_id) {
name = _name + to_string(data_id) + ".in";
fout.open(name);
}
void input_write (int x) {
fout << x << " ";
return ;
}
void input_write (char x) {
fout << x << " ";
return ;
}
void input_write (short x) {
fout << x << " ";
}
void input_write (long x) {
fout << x << " ";
return ;
}
void input_write (long long x) {
fout << x << " ";
return ;
}
void input_write (std::string x) {
fout << x << " ";
return ;
}
};
};
using namespace inout;
int main() {
IO io = IO("check", 1);
return 0;
}