Cod sursa(job #2143003)
Utilizator | Data | 25 februarie 2018 14:26:45 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | xxxx_5 | Marime | 0.18 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
long int a, b;
f>>a>>b;
g<<a+b;
return 0;
}