Cod sursa(job #2978358)
Utilizator | Data | 13 februarie 2023 18:17:54 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fin ("adunare.in");
ofstream fout("adunare.out");
int main()
{
long a, b;
fin >> a >> b;
fout << a + b;
fin.close();
fout.close();
return 0;
}