#include <iostream>

int main()
{
    unsigned int arr[4] = {0};

    for (auto a : arr)
        std::cout << a << '\n';
}