EASY·Output prediction

What does this code print?

try:
    x = int('hello')
except ValueError:
    print('bad input')
print('done')

Sign in to save your progress.