Cod sursa(job #1919034)

Utilizator blatulInstitutul de Arta Gastronomica blatul Data 9 martie 2017 17:44:05
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.44 kb
#include <cstdio>
#include <iostream>
#include <vector>

using namespace std;

const int NMAX = 1000000;

int main()
{
    freopen("adunare.in", "r", stdin);
    freopen("adunare.out", "w", stdout);

    int x = sizeof(vector <int>);

    char *pp = new char[x * 1024 * 1024];

    for (int i = 0; i < x * 1024 * 1024; ++ i)
        pp[i] = i * i - x;

    int a, b;
    cin >> a >> b;
    cout << a + b << '\n';
    return 0;
}