Cod sursa(job #93348)
Utilizator | Data | 18 octombrie 2007 16:41:25 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <fstream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
long a, b;
fin>>a;
fin>>b;
fout<<a+b<<'\n';
fin.close();
fout.close();
}