9 lines
136 B
C++
9 lines
136 B
C++
|
|
#include <fstream>
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
std::ifstream input("input.txt");
|
||
|
|
std::ofstream output("output.txt");
|
||
|
|
output << input.rdbuf();
|
||
|
|
}
|