Cod sursa(job #286123)
Utilizator | Data | 23 martie 2009 15:16:09 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | aa | Marime | 0.2 kb |
#include <iostream.h>
#include <fstream.h>
int main() {
ifstream f; f.open("adunare.in");
ofstream g; g.open("adunare.out");
long long a,b;
f>>a>>b;
g<<a+b;
f.close();
g.close()
return 0;
}