Cod sursa(job #3349310)
| Utilizator | Data | 28 martie 2026 02:45:03 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <fstream>
using namespace std;
ifstream fin ("adunare.in");
ofstream out;
long long a,b;
int main()
{
out.open("adunare.out", std::ios_base::app);
fin >> a >> b;
out >> a + b;
return 0;
}