Cod sursa(job #483339)
Utilizator | Data | 8 septembrie 2010 02:44:05 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <fstream>
using namespace std;
int main()
{
int a,b;
ifstream IN("adunare.in");
ofstream OUT("adunare.out");
IN>>a;
IN>>b;
OUT<<a+b<<"\n";
IN.close();
OUT.close();
return 0;
}