mynb1 = Val(InputBox("输入第一个数"))mynb2 = Val(InputBox("输入第二个数"))If mynb1 > mynb2 ThenMsgBox mynb1 & ">" & mynb2ElseMsgBox mynb1 & "<" & mynb2End If