#include <iostream>


int main()
{
    int x[3] = {5,7,9};
    std::cout << 1[x] << std::endl;
    std::cout << 2[x] << std::endl;
    return 0;
}
