Cod sursa(job #1632437)
| Utilizator | Data | 6 martie 2016 09:54:33 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int a,b;
ofstream g("adunare.out");
fstream f("adunare.in",ios::in);
f>>a>>b;
g<<(a+b);
return 0;
}
