Cod sursa(job #1366620)

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