Cod sursa(job #616008)
Utilizator | Data | 11 octombrie 2011 14:45:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.12 kb |
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out);
void main()
{
int a,b;
f>>a;
f>>b;
g<<a+b;
}