#include #include #include using namespace std; typedef long long int ll; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); string s=""; for(int i=1;i<=100;i++){ s+=to_string(i); } int d; cin >> d; cout << s[d-1] << endl; }