def main(): d = float(input()) d *= 1.08 d = round(d, 2) print(d) if __name__ == "__main__": main()