Cod sursa(job #3354559)
| Utilizator | Data | 18 mai 2026 21:59:05 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include<fstream>
using namespace std;
int main()
{long a,b,s;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
s=a+b;
g<<s;
g.close();
return 0;
}
