Cod sursa(job #313070)
Utilizator | Data | 7 mai 2009 22:01:34 | |
---|---|---|---|
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.out",ios::out);
void main()
{
int a,b;
f>>a;
f>>b;
g<<a+b;
}