import math
N=int(input())
X=N*1.5
result = math.floor(X)
print(result)