Cod sursa(job #465087)

Utilizator danyhk94Radu Daniel Alexandru danyhk94 Data 23 iunie 2010 12:02:49
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.14 kb
#include <fstream.h>
int main()
{
int a,b;
ofstream OUT("adunare.out");
ifstream IN("adunare.in");
IN>>a;
IN>>b;
OUT<<a+b;
return 0;
}