Cod sursa(job #2420934)
Utilizator | Data | 13 mai 2019 16:41:29 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream f("Andrei.in");
ofstream g("Andrei.out");
int a,b;
int main()
{ f>>a;
f>>b;
g<<a+b;
g.close();
return 0;
}