import sys input = sys.stdin.readline def main(): N = int(input()) M = 15 * N // 10 print(M) if __name__ == "__main__": main()