Cod sursa(job #424365)
| Utilizator | Data | 24 martie 2010 19:54:41 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | teme_upb | Marime | 0.2 kb |
#include <fstream>
using namespace std;
int A,B;
int main ()
{
ifstream in("adunare.in");
in>>A>>B;
ofstream out("adunare.out");
out<<A+B;
in.close();
out.close();
return 0 ;
}
