Cod sursa(job #294744)
Utilizator | Data | 2 aprilie 2009 18:54:39 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream.h>
#include <fstream.h>
ifstream f("date.in",ios::in);
ofstream g("date.out",ios::out);
int main()
{
int a,b;
f>>a>>b;
g<<(a+b);
f.close();
g.close();
return 0;
}