Cod sursa(job #620573)
Utilizator | Data | 16 octombrie 2011 15:01:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <fstream.h>
using namespace std;
int A, B;
int main(void)
{
ifstream in("adunare.in");
ofstream out("adunare.out");
in >> A >> B;
out << A+B << endl;
in.close();
out.close();
return 0;
}