Cod sursa(job #2712782)
| Utilizator | Data | 26 februarie 2021 15:23:29 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int A, B;
int main()
{
fin >> A >> B;
fout << A + B << '\n';
return 0;
}
