Cod sursa(job #1181830)
Utilizator | Data | 3 mai 2014 22:09:47 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream in ("adunare.in");
ofstream out ("adunare.out");
int main ()
{
int A, B;
in >> A >> B;
out << (A + B) << "\n";
return 0;
}