Cod sursa(job #2857955)
| Utilizator | Data | 26 februarie 2022 18:13:49 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.23 kb |
#include<fstream>
#include<math.h>
#include<algorithm>
using namespace std;
long long x, y;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin >> x;
fin >> y;
fout << x + y;
}
