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