Cod sursa(job #2210063)
| Utilizator | Data | 5 iunie 2018 16:02:11 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | teme_upb | Marime | 0.18 kb |
#include<iostream>
#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;
}
