N = gets.to_i ans = 0 (0 .. N).each do |t| (0 .. t).each do |g| (0 .. N).each do |pg| ans += 1 if t * 5 + g * 2 + pg * 3 == N end end end puts ans