Cod sursa(job #2511648)
Utilizator | Data | 19 decembrie 2019 15:15:30 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
long long unsigned a,b;
f>>a;
f>>b;
g<<a+b;
f.close();
return 0;
}