Cod sursa(job #2252338)
| Utilizator | Data | 2 octombrie 2018 18:38:30 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | marpmi_2018 | Marime | 0.23 kb |
#include <iostream>
#include<fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
long a,b;
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0;
}
