#include "bits/stdc++.h" using namespace std; typedef long long ll; #define rep(i,n) for(int i=0;i<(int)(n);i++) int gcd(int a,int b){return b?gcd(b,a%b):a;} int main() { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; cout << 0; if(n) cout <<"."; while(1) { if(n--) { cout << 1; } else { break; } if(n--) { cout << 4; } else { break; } if(n--) { cout << 2; } else { break; } if(n--) { cout << 8; } else { break; } if(n--) { cout << 5; } else { break; } if(n--) { cout << 7; } else { break; } } cout << endl; return 0; }