from decimal import Decimal N = int(input()) N = Decimal(N) p = Decimal('1.08') ans = N*p print(ans)