填空题

下面程序的运行结果为
#include<iostream.h>
void fun(int x=0,int y=0)

cout < < x < < y;

void main( )

fun(5) ;

【参考答案】

50