Cod sursa(job #676358)
| Utilizator | Data | 9 februarie 2012 01:00:29 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream.h>
#include <memory.h>
ifstream in("adunare.in");
ofstream out("adunare.out");
long long a, b;
int main()
{
in>>a>>b;
out<<a+b<<"\n";
return 0;
}