Cod sursa(job #182773)
Utilizator | Data | 21 aprilie 2008 12:36:17 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream.h>
#include <stdio.h>
fstream fi("adunare.in",ios::in);
fstream fo("adunare.out",ios::out);
int main () {
long a,b;
fi>>a>>b;
fo<<a+b;
return 0;
}