Cod sursa(job #256566)
Utilizator | Data | 11 februarie 2009 21:39:01 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
void main(){
long a,b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a>>b;
fin.close();
fout<<a+b;
fout.close();
}