Cod sursa(job #1493348)

Utilizator DivideBy0Aayush Gupta DivideBy0 Data 29 septembrie 2015 08:13:02
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 1.53 kb
/*input
2
foo
bar
*/

/*
ID: aayushg1
LANG: C++
PROG: template
*/

//#include <bits/stdc++.h>  //includes everything, supported in codeforces, not supported in usaco
#include <iostream> //cin/out
#include <fstream>  //fin/fout
#include <algorithm>//sort, next_permutation
#include <functional>// greater: example: sort (array1, array1+n, greater<int>());
#include <cmath>   //pow, round, sqrt, floor, cell(ceiling),  etc.
#include <set>      //set<>
#include <map>      //map<>
#include <queue>    //queue, priority_queue
#include <vector>   //vector<>
#include <deque>    //deque
#include <stack>    //stack
#include <sstream>  //string2int and other conversions
#include <string>
#include <cstring>  //memset
#include <utility>  //make_pair
#include <iomanip>  //setprecision
#include <bitset>   //bitset

#define NDEBUG
#include <cassert> //assert, disabled by NDEBUG

#define DEBUG
#define f first
#define s second
#define pb push_back
#define ll long long
#define mp make_pair
#define mpi make_pair<int, int>
#define endl << '\n'
#define sp << ' ' <<
#define inf 2000000000
#define eps 1e-9
#define maxn 100010
using namespace std;

typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<pii> vii;

int main()                      // In USACO Problems - Ctrl-Alt-B Build/Run
{
    freopen ("adunare.in","r",stdin);
    ios_base::sync_with_stdio(false);
    ios::sync_with_stdio(false);
    freopen ("adunare.out","w",stdout);
    int a, b;
    cin >> a >> b;
    cout << a + b << endl;
}