Cod sursa(job #310270)
Utilizator | Data | 2 mai 2009 09:42:20 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <cstdio>
#include <vector>
using namespace std;
int main() {
int x;
freopen("test.in", "r", stdin);
scanf("%d", &x);
printf("%d\n", x);
vector<int> v;
v.push_back(10);
printf("%d\n", v[0]);
return 0;
}