Cod sursa(job #3308632)
| Utilizator | Data | 26 august 2025 18:36:55 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int doWork();
int main()
{
doWork();
return 0;
}
int doWork()
{
int a, b;
fin >> a >> b;
fout << a + b;
}
