require 'prime' N, L = gets.split.map(&:to_i) ans = 0 Prime.each(L / (N - 1)) {|d| ans += L - (N - 1) * d + 1 } p ans