#include #define rep(i, a, n) for(int i = a; i < n; i++) #define int long long using namespace std; typedef pair P; signed main(){ int d; cin >> d; string s = ""; for(int i = 1; i < 100; i++){ string t = to_string(i); s += t; } cout << s[d - 1] << endl; }