#include <iostream>
     
int main() {
  int arr[] = {1, 1, 2, 2, 3, 3};
  for (auto &it : arr)
    std::cout << it << std::endl;
  return 0;
}