#include #include #include #include #include #include #include #include using namespace std; typedef long long ll; string D = "0.1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991"; int main() { cin.tie(0); ios::sync_with_stdio(false); int N; cin >> N; reverse(D.begin(), D.end()); string ans; ll c = 0; for(int i = 0; i < D.size(); i++) { if(D[i] == '.') { ans += '.'; continue; } c += (D[i] - '0') * N; ans += char('0' + c % 10); c /= 10; } while(c) { ans += '0' + c % 10; c /= 10; } reverse(ans.begin(), ans.end()); cout << ans << endl; }