Cod sursa(job #212746)
Utilizator | Data | 6 octombrie 2008 19:17:40 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream>
int main()
{
int A,B;
ifstream f("adunare.in");
f>>A;
f>>B;
f.close();
ofstream g("adunare.out");
g<<A+B;
g.close();
return 0;
}