import java.util.Scanner; public class Main_yukicoder285 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long d = sc.nextLong(); d *= 108; System.out.printf("%.12f\n", (double)d / 100); sc.close(); } }