Cod sursa(job #617985)
Utilizator | Data | 15 octombrie 2011 12:37:23 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream>
using namespace std;
int A,B;
int main()
{ifstream i("suma.in");
ofstream o("suma.out");
i>>A>>B;
o<<A+B;
i.close();
o.close();
return 0;
}