Cod sursa(job #210813)
Utilizator | Data | 29 septembrie 2008 17:23:38 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
void main()
{
int A,B;
ifstream f("adunare.in");
f>>A;
f>>B;
f.close();
ofstream g("adunare.out");
g<<A+B;
g.close();
}