Cod sursa(job #2210064)
Utilizator | Data | 5 iunie 2018 16:04:11 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.16 kb |
#include<fstream>
using namespace std;
int main()
{
long a,b;
ifstream g("adunare.in");
ofstream h("adunare.out");
g >> a >> b;
h << a + b;
return 0;
}