Read the code carefully
from urllib.request import urlopen
from urllib.error import HTTPError
try:
with urlopen("https://httpbin.org/status/404") as resp:
print(resp.status)
except HTTPError as e:
print("HTTPError", e.code)What will the program print? Write here: