填空题

写出下面程序的执行结果()。
x=345
a=x//100
b=(x-a*100)//10
c=x%10
print(a,b,c)

【参考答案】

(3,4,5)