Given that there is no `# frozen_string_literal` magic comment, what does this print?a = "abc".freeze b = "abc".freeze c = ("ab" + "c").freeze puts [a.equal?(b), a.equal?(c)].inspect