Cod sursa(job #488881)
Utilizator | Data | 30 septembrie 2010 14:02:52 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <fstream.h>
int main()
{
long a;
long b;
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
fin >> a;
fin >> b;
fout << a+b;
return 0;
}