Cod sursa(job #2636699)

Utilizator EckchartZgarcea Robert-Andrei Eckchart Data 19 iulie 2020 11:39:12
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.34 kb
#include <iostream>
#include <fstream>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
using LD = long double;
using pii = pair<int, int>;
using pll = pair<LL, LL>;


int main()
{
    ifstream cin("adunare.in");
    ofstream cout("adunare.out");

    LL a, b;
    cin >> a >> b;

    cout << a + b;
}