def main(): D = int(input()) price = round(D * 1.08, 5) print(price) if __name__ == '__main__': main()