Cod sursa(job #1886730)
| Utilizator | Data | 21 februarie 2017 09:16:44 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.31 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
///Deklaralas
unsigned long long int a, b;
///Beolvasas
ifstream f("adunare.in");
f>>a>>b;
///Kiiratas
ofstream g("adunare.out");
g<<a+b;
f.close();
g.close();
return 0;
}
