Cod sursa(job #470931)
Utilizator | Data | 16 iulie 2010 09:48:02 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include <fstream>
int main()
{
fstream in("A+B_in.txt",ios::in);
fstream out("A+B_out.txt",ios::out);
int a,b;
in>>a>>b;
out<<a+b;
return 0;
}