Cod sursa(job #1965084)
Utilizator | Data | 13 aprilie 2017 22:24:05 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream f("problema.in");
ofstream g("problema.out");
int a, b;
int main()
{ f>>a>>b;
g<<a+b;
return 0;
g.close();
}