import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
double M;
M = sc.nextDouble();
double M1, M2;
double R = 0.00417;
for(int i=1; i<=6; i++){
M= 100+ M + (M*R);
}
M1 =M-100;
M2 =(int)(M1*10);
M2 = M2/10;
System.out.println(+M2);
}
}
다른편집기 돌리면 괜찮은데 CS에선 wronganswer라고 뜹니다
왜그런지 잘 모르겠습니다 ㅠㅠ