#include void solve() { int n; std::cin >> n; if (n == 0) { std::cout << "0" << std::endl; return; } std::cout << "0."; int x = 1; while (n--) { x *= 10; std::cout << x / 7; x %= 7; } std::cout << std::endl; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }