Cod sursa(job #2540670)

Utilizator whothefuckareunicu buliga whothefuckareu Data 7 februarie 2020 14:30:05
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.36 kb
#include <bits/stdc++.h>

using namespace std;
#define ll long long
#define INF 1234567890
#define N 1501
typedef vector<int> vi;
typedef pair<int,int> pi;

ifstream fin("adunare.in");
ofstream fout("adunare.out");

int main()
{
    ios::sync_with_stdio(false);
    fin.tie(0);
    ll a, b;
    fin >> a >> b;
    fout << (ll)(a + b);
    return 0;
}