Comparing attributes

Body: 

Here's some code:

Dim pHp As Integer
Dim pAc As Integer
Dim mHp As Integer
Dim mAc As Integer
pHp = 23
mHp = 22
pAc = 8
mAc = 9
If pHp > mHp And Not pAc < mAc Then
    MsgBox "Player advantage"
Else
    MsgBox "Monster advantage"
End If

What message will the user see?

Work it out on paper first, before you try it in Excel.

Keywords: 
Response type: 
Text
Case-sensitive: 
No