Cod sursa(job #1366619)

Utilizator h13r0glyphAndrei C h13r0glyph Data 1 martie 2015 12:08:36
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include <fstream>
using namespace std;
int main() {
ifstream f("adunare.in");
f>>a>>b;
f.close();
ofstream g("adunare.out");
f<<a+b;
g.close();
return 1;
}