Cod sursa(job #22306)
Utilizator | Data | 26 februarie 2007 01:14:14 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.13 kb |
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{ int a,b;
f>>a>>b;
g<<a+b;
return 0;
}