Cod sursa(job #1131606)
Utilizator | Data | 28 februarie 2014 22:00:33 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.17 kb |
#include<fstream>
using namespace std;
int A,B;
int main()
{ifstream i("adunare.in");
ofstream o("adunare.out");
i>>A>>B;
o<<A+B;
i.close();
o.close();
return 0;
}