How I can promote the inputbox again when the user did not input the value in the inputbox?

Code:
nolot = InputBox("Sila Masukkan No Lot", "Carian No Lot")
If Len(nolot) = 0 Then

MsgBox "Please input no lot"

Else
MsgBox "tahniah"
End If
End Sub