Cod sursa(job #682337)
Utilizator | Data | 18 februarie 2012 21:13:03 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream.h>
int main()
{
long a,b;
ifstream fin("adunare.in");
fin>>a;
fin>>b;
fin.close();
ofstream fout("adunare.out");
fout<<(a+b);
fout.close();
return 0;}