Cod sursa(job #656246)

Utilizator veleanduAlex Velea veleandu Data 4 ianuarie 2012 13:13:59
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.36 kb
#include<iostream>
#include<fstream>
#include<vector>
using namespace std;
#define maxn 15001

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

long n,m,i,j;
vector <short> M[maxn];
long a,b;
int main()
{
    for ( i=1; i<=maxn; i++ )
        for ( j=1; j<=8; j++ )
            M[i].push_back(j);
    in>>a>>b;
    out<<a+b;
    return 0;
}