#include <iostream>
using namespace std;

int main() {
	// your code goes here
	string g = "12345";
	cout << g[10] << endl;
	
	return 0;
}