Cod sursa(job #65496)
Utilizator | Data | 10 iunie 2007 12:39:59 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.14 kb |
#include <fstream.h>
long a,b;
ifstream f ("adunare.in");
ofstream g ("adunare.out");
int main()
{f>>a>>b;
g<<a+b;
return 0;
}