# Homework 16, problem 2: Roblox level gate. # # Given the two variables below, print the correct one of: # "You can enter the dungeon." -- if level >= 10 AND has_key # "Level too low." -- if only level is too low # "Missing the key." -- if only the key is missing # "Level too low and missing the key." -- if both # # Run with: python exercises/16/homework/02-level-gate.py level = 12 has_key = True # Your code goes here: