d = int(input())#税抜価格d tax = d * 8/100 taxinc = d + tax #小数点以下第2位で丸める:##.00 print(round(taxinc,2))