How to subtract a dictionary's value?

Here do this:

local dictionary = {[1] = "13", [2] = "14", [3] = "15"}

for key, value in pairs(dictionary) do
	value -= 5
	print(value)
end

This subtracts the values without erroring