/* No.756 チャンパーノウン定数 (1) https://yukicoder.me/problems/no/756 */ #include using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); int d; cin >> d; int cnt = 1; while (true) { string s = to_string(cnt++); for (size_t j = 0; j < s.size(); j++) { d--; if (d == 0) { cout << s[j] << endl; return 0; } } } }