from sys import stdin def main(): N = int(input()) print(int(1.5 * N)) input = lambda: stdin.readline() main()