Cod sursa(job #218342)
| Utilizator | Data | 1 noiembrie 2008 17:10:29 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <fstream.h>
int main()
{
ifstream in("adunare.in");
ofstream out("adunare.out");
long a,b;
in >> a >> b;
out << a+b;
in.close();
out.close();
return 0;
}
