Dim i As Integer
Dim x As Integer
Dim y As Integer
y=30
x=Val(InputBox(“x=”))
If y< x Then
y=x
End If
Next i
Print y
程序运行后,依次输入:36 87 51
运行后输出结果是_________________。