Cod sursa(job #13670)
Utilizator | Data | 7 februarie 2007 12:46:53 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.13 kb |
#include<fstream.h>
void main()
{
long a,b;
ifstream x ("adunare.in")
ofstream y ("adunare.out")
x>>a>>b;
y<<a+b;
return=0;
}