Cod sursa(job #13351)
| Utilizator | Data | 6 februarie 2007 12:50:13 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream.h>
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long int a,b;
fin>>a>>b;
fout<<a+b;
fout.close();
return 0;
}