Cod sursa(job #304541)
Utilizator | Data | 13 aprilie 2009 17:05:29 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.14 kb |
#include <fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
long a,b;
void main(){
f>>a>>b;
g<<a+b;
f.close();
g.close();
}