Cod sursa(job #405001)
Utilizator | Data | 27 februarie 2010 10:22:37 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
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;
}