Cod sursa(job #297482)

Utilizator backsPopescu Cristian backs Data 5 aprilie 2009 13:50:54
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.12 kb
#include <fstream.h>
int main()
{
int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
g<<a+b;
}