Cod sursa(job #549752)

Utilizator treizeciPrajescu Rares Emil treizeci Data 8 martie 2011 22:01:15
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include<iostream.h>
#include<fstream.h>

int main()
{int s,a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
s=a+b;
g<<"Suma este"<<s;
f.close();g.close();
return 0;
}