Cod sursa(job #123492)
Utilizator | Data | 16 ianuarie 2008 10:40:56 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream.h>
#include <string.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{long long a,b;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;
}