Cod sursa(job #95538)
| Utilizator | Data | 29 octombrie 2007 13:18:54 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.13 kb |
#include <fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
void main()
{
long int a,b;
f>>a>>b;
g<<a+b;
}
