Cod sursa(job #368063)
Utilizator | Data | 23 noiembrie 2009 22:06:36 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream.h>
ofstream g("adunare.out");
ifstream f("adunare.in");
int a,b;
int main()
{ f>>a;
f>>b;
g<<a+b<<endl;
return 0;
}