Cod sursa(job #552383)
Utilizator | Data | 12 martie 2011 10:52:40 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.15 kb |
#include<fstream.h>
int main ()
{int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a;
f>>b;
g<<(a+b);
f.close();
g.close();
}