以下のコードの実行結果はどうなりますか? ```python age = 16 has_license = True result = age >= 18 and has_license print(result) ```