Cod sursa(job #647336)
Utilizator | Data | 11 decembrie 2011 13:47:59 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | 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;
}