Cod sursa(job #2884425)

Utilizator hobbitczxdumnezEU hobbitczx Data 3 aprilie 2022 15:24:37
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.24 kb
#include <bits/stdc++.h>
#define ll long long
using namespace std;

ifstream fin ("adunare.in");
ofstream fout ("adunare.out");

ll a , b;

int main(){
    ios_base::sync_with_stdio(false);
    fin >> a >> b;
    fout << a + b;
}