Cod sursa(job #2937471)
Utilizator | Data | 10 noiembrie 2022 15:30:23 | |
---|---|---|---|
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()
{
long long a, b;
fin >> a >> b;
a += b;
fout << a;
return 0;
}