Cod sursa(job #424363)
| Utilizator | Data | 24 martie 2010 19:53:44 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Lista lui wefgef | 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 ;
}
