选择题
在窗体上有一个命令按钮Commandl,编写事件代码如下:
Private Sub Commandl_Click()
Dim x As Integer, y As Integer
x=12: y=32
Call Proc(x,y)
Debug.print x; y
End Sub
Public Sub Proc(n As Integer,ByVal m As Integer)
n=n Mod 10
m=m Mod 10
End Sub
打开窗体运行后,单击命令按钮,立即窗口上输出的结果是______。