function Main(input) { n = parseInt(input); ans = a(n).toFixed(20); console.log(ans); } function a(n) { return Math.pow(3,n)/Math.pow(4,n-1); } // Don't edit this line! Main(require("fs").readFileSync("/dev/stdin", "utf8"));