运行下面程序,错误的输入和输出数据是?( )
try:
x=int(input())
y=int(input())
m=divmod(x,y)
print(m)
except:
print('error')
else:
print('right')
finally:
print('OK')
输入
1
0
输出
error
OK
5
(0, 0)
right
(5, 0)