Cod sursa(job #2643823)

Utilizator R0L3eXMaracine Razvan R0L3eX Data 21 august 2020 18:12:55
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.27 kb
#include <bits/stdc++.h>

using namespace std;
typedef long long ll;
typedef vector<int> vi;
ifstream fin("adunare.in");
ofstream fout("adunare.out");

int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
    
    int a, b;
    fin >> a >> b;
    fout << a+b;
    return 0;
}