Cod sursa(job #834232)

Utilizator Consti.001FMI Dranca Constantin Consti.001 Data 13 decembrie 2012 23:18:16
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.14 kb
#include <fstream>
using namespace std;
int a,b;
int main()
{ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a;
f>>b;
g<<a+b;
}