Cod sursa(job #16275)
Utilizator | Data | 12 februarie 2007 19:38:16 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<iostream.h>
#include<fstream.h>
void main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
unsigned long x,y;
f>>x;
f>>y;
g<<x+y;
f.close();
g.close();
}