Cod sursa(job #1494126)
Utilizator | Data | 30 septembrie 2015 18:54:34 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include<fstream>
using namespace std;
int main ()
{
unsigned long a, b;
ifstream g ("adunare.in");
ofstream h ("adunare.out");
g>>a>>b;
h<<a+b;
g.close();
h.close();
return 0;
}