Cod sursa(job #293552)
| Utilizator | Data | 1 aprilie 2009 21:51:07 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | SSpeed Challenge #1 | 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;
}