Guest User

Untitled

a guest
Oct 20th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int a;
  8.     a = 50;
  9.  
  10.     vector<int> v;
  11.     v.push_back(5);
  12.     v.push_back(50);
  13.  
  14.  
  15.     return 0;
  16. }
Add Comment
Please, Sign In to add comment