Cod sursa(job #3352325)
| Utilizator | Data | 26 aprilie 2026 17:28:39 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
int a, b;
fin >> a;
fin >> b;
fout << a + b << endl;
return 0;
}
