Cod sursa(job #2422677)

Utilizator FunnyStockyMihnea Andreescu FunnyStocky Data 19 mai 2019 16:35:46
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.95 kb
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <cmath>
#include <vector>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <queue>
#include <ctime>
#include <cassert>
#include <complex>
#include <string>
#include <cstring>
#include <chrono>
#include <random>
#include <queue>
#include <bitset>

using namespace std;

#ifdef LOCAL
	#define eprintf(...) fprintf(stderr, __VA_ARGS__)
#else
	#define eprintf(...) 42
#endif

typedef long long ll;
typedef pair <int, int> pii;
typedef pair <ll, int> pli;
typedef pair <ll, ll> pll;
typedef long double ld;
#define mp make_pair
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());

int main()
{
	freopen("adunare.in", "r", stdin);
	freopen("adunare.out", "w", stdout);
        pii p;
        scanf("%d %d", &p.first, &p.second);
        printf("%d\n",p.first + p.second);


	return 0;
}