There's no command for it, just syntax.
The inputbox() function returns a string, therefore, you need to check for a string.
If box="Lol" Then
msgbox ("Correct!")
Else
msgbox ("Incorrect")
End If
I think your first step should be to learn the basics of programming logic before you go any further. The if structure is the most basic and you don't understand how to even use that.