Cod sursa(job #405003)
| Utilizator | Data | 27 februarie 2010 10:25:47 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <fstream.h>
int main ()
{
ifstream f ("adunare.in");
ofstream g ("adunare.out");
long long a,b;
f>>a>>b;
g<<a+b;
return 0;
}
