Cod sursa(job #1879251)
| Utilizator | Data | 14 februarie 2017 20:05:18 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream be("adunare.in");
long long int a, b;
be>>a>>b;
be.close();
ofstream ki("adunare.out");
ki<<a+b;
ki.close();
}
