¿El Gato Roba Comida?

Dificultad: Fácil Python basic logic
hambre = True
dueno_presente = False
comida_accesible = True

if hambre and not dueno_presente and comida_accesible:
    print('¡El gato roba!')
else:
    print('El gato se porta bien')
📥 Inputs:
hambre = True, dueno_presente = False, comida_accesible = True
❓ ¿Cuál es el output?
Ingresa tu respuesta abajo