Cod sursa(job #3180190)
| Utilizator | Data | 4 decembrie 2023 19:58:51 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | teme_upb | Marime | 0.24 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
int a, b, s;
fin >> a;
fin >> b;
s = a + b;
fout << s;
return 0;
}
