2023-03-07 18:09:48 +01:00
|
|
|
// rd7cc
|
2021-11-29 12:10:36 +01:00
|
|
|
#include <fstream>
|
2023-03-07 18:09:48 +01:00
|
|
|
#include <iostream>
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
std::ofstream result("result.hpp");
|
2021-11-29 12:10:36 +01:00
|
|
|
|
2023-03-07 18:09:48 +01:00
|
|
|
result << "//Result" << std::endl;
|
2021-11-29 12:10:36 +01:00
|
|
|
|
2023-03-07 18:09:48 +01:00
|
|
|
result.close();
|
2021-11-29 12:06:23 +01:00
|
|
|
}
|