Cod sursa(job #314240)
Utilizator | Data | 10 mai 2009 22:53:37 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<iostream.h>
#include<fstream.h>
fstream f("adun.in",ios::in);
fstream g("adun.out",ios::out);
main()
{
int a,b;
f>>a;
f>>b;
g<<a+b;
}