Cod sursa(job #3349913)
| Utilizator | Data | 3 aprilie 2026 14:50:27 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
#include <math.h>
using namespace std;
int main ()
{
long a, b;
ifstream f("adunare.in");
f>>a;
f>>b;
f.close ();
ofstream g("adunare.out");
g<<a+b;
g.close ();
}