填空题

以下程序的输出结果是______。
fun (int x, int y, int z)
z=x*x+y*y;
main()
int a=31;
fun (6, 3, a)
printf("%d", a)

【参考答案】

31