Cod sursa(job #297467)
Utilizator | Data | 5 aprilie 2009 13:46:41 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.12 kb |
#include <fstream.h>
int main()
{
int a,b;
ifstream f("date.in");
ofstream g("date.out");
f>>a>>b;
g<<(a+b);
}