Cod sursa(job #3349311)
| Utilizator | Data | 28 martie 2026 02:45:28 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| 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;
}