#include using namespace std; ifstream fin("text.in"); ofstream fout("text.out"); int main() { fin.sync_with_stdio(false); fout.sync_with_stdio(false); fin.tie(nullptr); fout.tie(nullptr); }