Cod sursa(job #789797)
Utilizator | Data | 19 septembrie 2012 13:19:36 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <fstream>
using namespace std;
int main()
{
int a,b;
ifstream in ("adunare.in");
ofstream out ("adunare.out");
in >> a >> b;
out << a+b << "\n";
}