#include <iostream>
#include <string>



int main()
{
  // Make an array of strings and allocate the needed space by initialising
  // with a number of values. Be aware that this fixes the size of the
  // array to -in this case- 3 strings.
  std::string stad[] = {"Utrecht","Amsterdam","Rotterdam"};

  // Print the array's contents
  for(int i=0; i<3; i++)
    std::cout << stad[i] << std::endl;

  return 0;
}

