class Problem0835: def solve(this): n = int(input()) print(int(n * 1.5)) if __name__ == "__main__": problem = Problem0835() problem.solve()