Cod sursa(job #203504)
Utilizator | Data | 16 august 2008 23:00:31 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <fstream.h>
int main ()
{
long a, b, r=1;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a>>b;
fout<<b+a;
fin.close();
fout.close();
return 0;
}