#include <iostream>

int main() {
	// your code goes here
	
	char array[] = {'a', 'b', 'c', 'd', 'e'};
	
	std::cout << 2[array];
	
	return 0;
}