Cod sursa(job #628915)

Utilizator sebi.cherechesSebi Chereches sebi.chereches Data 2 noiembrie 2011 12:49:34
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <iostream>
#include <fstream>
using namespace std;
int main ()
{
int a,b,c;
fstream fin ("adunare.in", ios::in);
fstream fout ("adunare.out", ios::out);
fin>>a;
fin>>b;
fout<<a+b;
fin.close();
fout.close();
}