Cod sursa(job #2622218)
Utilizator | Data | 31 mai 2020 18:16:43 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Lista lui wefgef | Marime | 0.24 kb |
#include <fstream>
#include <algorithm>
#include <deque>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
long long a,b;
fin>>a>>b;
fout<<a+b;
/// https://we.tl/t-Srgkz0dUHW
}