What will the following code print?

try:

5/0

except ZeroDivisionError:

print("Cannot divide by zero!")

print("Program is still running")

The code will print:

"Cannot divide by zero!"
"Program is still running"