Cod sursa(job #6892)
Utilizator | Data | 21 ianuarie 2007 10:34:22 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.13 kb |
#include <fstream.h>
long a,b,c;
ifstream f ("adunare.in");
ofstream g ("adunare.out");
void main()
{f>>a>>b;
c=a+b;
g<<c;
}