填空题

下面程序的运行结果为 【10】 
  # include <iostream.h>
  void fun(int x=0,int y=0)
  
    cout << X << y;
  
  void main( )
  
    fun(5);

【参考答案】

【10】50