Cod sursa(job #2000457)
Utilizator | Data | 13 iulie 2017 18:32:31 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <fstream>
#include <stdlib.h>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{ if(system("del a")){}
int a, b;
f >> a >> b;
g << a + b;
return 0;
}