Mai intai trebuie sa te autentifici.
Cod sursa(job #562165)
Utilizator | Data | 22 martie 2011 15:21:22 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream>
#include <cstdlib>
using namesapce std;
int a, b;
int main()
{
ifstream in( "adunare.in" );
in>>a>>b;
ofstream out( "adunare.out" );
out<<(a+b)<<'\n';
return EXIT_SUCCESS;
}