Cod sursa(job #312669)
| Utilizator | Data | 6 mai 2009 19:41:48 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<iostream.h>
#include<fstream.h>
fstream f("adunare.in",ios::in);
fstream g("adunare.out",ios::out);
main ()
{
int a,b,s;
f>>a>>b;
g<<a+b;
}
