Cod sursa(job #3337653)
| Utilizator | Data | 29 ianuarie 2026 12:33:39 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
using namespace std;
int main()
{
int A,B;
in>>A;
in>>B;
out<<A+B;
return 0;
}
