Cod sursa(job #293863)
| Utilizator | Data | 2 aprilie 2009 09:27:01 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | infoexpert | Marime | 0.16 kb |
#include<fstream.h>
#include<math.h>
long a,b;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
fin>>a>>b;
fout<<a+b;
return 0;
}