Cod sursa(job #273557)
Utilizator | Data | 8 martie 2009 18:57:29 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | c | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<ifstream.h>
ifstream fi("adunare.in");
ofstream fo("adunare.out");
int main()
{ int a, b;
fi>>a>>b;
fo<<a+b;
fi.close();
fo.close();
return 0;
}