Cod sursa(job #57132)

Utilizator cezar305Mr. Noname cezar305 Data 1 mai 2007 11:10:40
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.2 kb
#include <fstream.h>
#include <iomanip.h>

fstream f("adunare.in",ios::in);
fstream g("adunare.out",ios::out);

int main(){
long long a,b;f>>a>>b;
g<<a+b;    
f.close();g.close();
return 0;
}