Cod sursa(job #113181)
| Utilizator | Data | 9 decembrie 2007 00:50:06 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | c | Status | done |
| Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream.h>
void main()
{
int a,b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>a>>b;
fout<<a+b;
fin.close();
fout.close();
}