Cod sursa(job #22305)
Utilizator | Data | 26 februarie 2007 01:13:47 | |
---|---|---|---|
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>>b;
g<<a+b;
}