Cod sursa(job #312672)
| Utilizator | Data | 6 mai 2009 19:42:14 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| 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.ou",cos::out)
main()
{
int a,b,s=0;
f>>a;
f>>b;
s=s+b;
g<<s;
}