require "bigdecimal" def main(n) (BigDecimal(n) * 1.08).to_f end if __FILE__ == $0 p main(gets.to_i) end