Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4.  const int n=100;
  5.  int a [n];
  6.  
  7.  for (int i=0; i<n; i++) {
  8.   cout << a[i] <<endl;
  9.  }
  10.  
  11.  return 0;
  12. }