Cod sursa(job #1697646)
Utilizator | Data | 2 mai 2016 16:52:26 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <fstream>
using namespace std;
ifstream fin("adunare.ok");
ofstream fout("adunare.out");
int main()
{
char c;
while(!fin.eof())
{
fin.get(c);
fout<<c;
}
return 0;
}