Cod sursa(job #2429609)
| Utilizator | Data | 10 iunie 2019 15:27:55 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
unsigned int a;
unsigned int b;
ifstream f("adunare.in");
f >> a;
f >> b;
f.close;
ofstream g("adunare.out");
g << a + b << endl;
g.close;
return 0;
}