Advertisement
Guest User

Untitled

a guest
Jan 4th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. unsigned short m;
  8. unsigned int n;
  9. cin >> n >> m;
  10. unsigned short* niz = new unsigned short[n];
  11.  
  12. for(unsigned short i = 0; i < n; ++i)
  13. cin >>niz[i];
  14.  
  15. return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement