Which exception should be caught when int(input(...)) receives text such as hello?
int(input(...))
hello
IndexError, because the string has no numeric index.
IndexError
ZeroDivisionError, because every failed conversion divides by zero.
ZeroDivisionError
ValueError, because the string value cannot be converted to an integer.
ValueError
NameError, because quoted input is an undefined variable.
NameError