Cod sursa(job #389551)
Utilizator | Data | 1 februarie 2010 20:39:26 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <iostream>
#include <vector>
using namespace std;
vector<int> a;
int main()
{
a.push_back(1);
a.push_back(2);
a.push_back(3);
a.push_back(4);
return 0;
}