Cod sursa(job #155775)
| Utilizator | Data | 12 martie 2008 10:06:04 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream.h>
int main()
{
ifstream in("adunare.in");
ofstream out("adunare.out");
long int a,b;
in >> a >> b;
out << a+b;
in.close();
out.close();
}