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