Pagini recente » Cod sursa (job #2344878) | Cod sursa (job #2895711) | Cod sursa (job #242134) | Cod sursa (job #2347955) | Cod sursa (job #3154434)
#ifndef LOCAL
#pragma GCC optimize("Ofast")
#endif
#ifdef LOCAL
#define _GLIBCXX_DEBUG
#endif
#include <bits/stdc++.h>
#define pb push_back
#define pii pair<int, int>
using ll = long long;
using ci = const int;
using cll = const long long;
using namespace std;
/*******************************/
// INPUT / OUTPUT
#ifndef LOCAL
ifstream in("adunare.in");
ofstream out("adunare.out");
#define cin in
#define cout out
#endif
/*******************************/
/// GLOBAL DECLARATIONS
ll a, b;
/*******************************/
/// FUNCTIONS
void ReadInput();
void Solution();
void Output();
/*******************************/
///-------------------------------------
inline void ReadInput()
{
cin >> a >> b;
}
///-------------------------------------
inline void Solution()
{
}
///-------------------------------------
inline void Output()
{
cout << a + b;
}
///-------------------------------------
int main()
{
#ifndef LOCAL
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
#endif
ReadInput();
Solution();
Output();
return 0;
}