#include <stdio.h>

int main(void) {
	// your code goes here
	char a[ ] = "0123456789";
	int i = 5;
	printf("%d\n", a[i]);
	return 0;
}
