Cod sursa(job #750881)
Utilizator | Data | 23 mai 2012 15:41:55 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.19 kb |
#include<fstream.h>
#include<iostream.h>
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
f>>a;
f>>b;
g<<a+b;
return 0;
f.close();
g.close();
}