Cod sursa(job #1815452)
Utilizator | Data | 25 noiembrie 2016 11:35:31 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
using namespace std;
unsigned long long a, b;
ifstream f1("adunare.in");
ofstream f2("adunare.out");
int main()
{
f1 >> a;
f1 >> b;
f2 << a+b;
return 0;
}