Cod sursa(job #2146735)
Utilizator | Data | 28 februarie 2018 10:22:46 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Lista lui wefgef | Marime | 0.18 kb |
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main ()
{
unsigned long long a, b;
f >> a >> b;
g << a + b;
}