Cod sursa(job #2916282)
Utilizator | Data | 28 iulie 2022 19:11:12 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{ int A, B;
f>>A>>B;
g<<A+B;
f.close();
g.close();
return 0;
}