Cod sursa(job #3349492)

Utilizator eric_dragosDragos Eric eric_dragos Data 30 martie 2026 19:08:54
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.21 kb
#include <bits/stdc++.h>
#define ll long long
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main(){
    ll a,b;
    fin >> a >> b;
    fout << a+b;

    return 0;
}