Cod sursa(job #3348422)

Utilizator DavideAlb_Davide Alb DavideAlb_ Data 21 martie 2026 19:16:56
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.27 kb
#include <bits/stdc++.h>
using namespace std;

int main () {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);

    fstream cin("input.txt");
    fstream cout("output.txt");

    long long a, b;
    cin >> a >> b;

    cout << a+b << endl;
    return 0;
}