Cod sursa(job #222758)
| Utilizator | Data | 24 noiembrie 2008 23:01:18 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<fstream.h>
int main()
{
int a,b;
ifstream fin ("adunare.in");
fin>>a>>b;
fin.close();
ofstream fout ("adunare.out");
fout<<a+b;
fout.close();
return 0;
}