N = gets.to_i ans = 0 0.upto(N) do |x| 0.upto(N) do |y| break if N < x + y ans += 1 end end puts ans