Cod sursa(job #705250)
Utilizator | Data | 3 martie 2012 19:46:38 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
//A+B
#include <fstream>
using namespace std;
int main()
{
int a,b;
fstream f("adunare.in",ios::in),g("adunare.out",ios::out);
f>>a>>b;
g<<a+b;
f.close();
g.close();
return(0);
}