from decimal import Decimal as Dec d = Dec(input()) t = Dec("0.08") v = d * t + d print(v)