Cod sursa(job #2749450)

Utilizator TheGodFather2131Alexandru Miclea TheGodFather2131 Data 6 mai 2021 18:49:01
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.75 kb
//ALEXANDRU MICLEA

#include <vector>
#include <algorithm>
#include <string>
#include <string.h>
#include <cstring>
#include <queue>
#include <map>
#include <set>
#include <unordered_map>
#include <time.h>
#include <iomanip>
#include <deque>
#include <math.h>
#include <cmath>
#include <assert.h>
#include <stack>
#include <bitset>
#include <random>
#include <chrono>
#include <assert.h>
#include <iostream>

using namespace std;
using ll = long long;

#define fast_cin() 	ios::sync_with_stdio(false); cin.tie(0); cout.tie(0)

#ifdef INFOARENA
	ifstream cin("adunare.in"); ofstream cout("adunare.out");
#endif

//VARIABLES



//FUNCTIONS



//MAIN
int main() {

	int a, b; cin >> a >> b;
	cout << a + b;

	return 0;
}