search several words with awk command

Hello,

I want to test if i find the word CACCIA AND idlck in a file, i have to print a message Ok.

For that , i need to user a awk command with a && logical.
Can you help me ?
:confused:

### CACCIA: DEBUT ###
if $(grep -wqi "$2" /etc/passwd); then
        [ -f /etc/security/.idlck ] && rm /etc/security/.idlck
        chuser -R files registry=files $2
fi
### CACCIA: FIN ###
awk '/CACCIA/ || /idlck/ {print "OK"} ' input_file

Something like this?

awk '
/CACCIA/{c++}
/idlck/{d++}
END{if(c && d)print "OK"}
' file

Thanks a lot !!