Cod sursa(job #711706)
Utilizator | Data | 12 martie 2012 18:23:34 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main()
{int a,b;
fstream f("adunare.in",ios::out);
fstream g("adunare.out",ios::out);
f>>a>>b;
g<<a+b;
return 0;}