#include <iostream> using namespace std; int main() { int arr[] = {1, 3, 5, 7, 9}; cout << arr[3] + 2[arr] << endl; return 0; }
8
12
14
9