def ceil(x, y): return (x + y - 1) // y n = int(input()) print(ceil(n, 2) * (ceil(n, 2) + 1) // 2)