Cod sursa(job #742637)

Utilizator mosuAdascalitei Radu mosu Data 30 aprilie 2012 21:46:31
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.31 kb
#include <iostream>
#include <fstream>
#include <vector>
#include <utility>

using namespace std;
typedef vector<pair<int, int> > VPair;
typedef int Huge[1001];

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

int main()
{
    int a,b;
    fin>>a>>b;
    fout<<a+b;
    return 0;
}