Cod sursa(job #2247791)

Utilizator UAIC_Buruiana_Oprea_OuatuUAIC BOO UAIC_Buruiana_Oprea_Ouatu Data 29 septembrie 2018 09:40:35
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.6 kb
#include <bits/stdc++.h>
#include <unordered_map>
#include <unordered_set>
using namespace std;

#define mp make_pair
#define CHECK(x) if(!(x)) { return false; }
#define CHECKRET(x, y) if(!(x)) { return y; }
#define SKIP(x) if(x) { continue; }

#ifdef INFOARENA
#define ProblemName "adunare"
#else
#define ProblemName "fis"
#endif

#define MCONCAT(A, B) A B
#define InFile MCONCAT(ProblemName, ".in")
#define OuFile MCONCAT(ProblemName, ".out")

int main() {
    freopen(InFile, "r", stdin);
    freopen(OuFile, "w", stdout);
    int x, y;
    scanf("%d%d", &x, &y);
    printf("%d\n", x + y);
    return 0;
}