d = int(input())#税抜価格d tax = d * 8/100#小数点以下切り捨てない taxinc = d + tax print(round(taxinc,2))