{% extends 'oj_base.html' %} {% block body %}
{% include "oj/problem/_problem_header.html" %}

{{ problem.description|safe }}

{{ problem.input_description }}

{{ problem.output_description }}k

{% for item in samples %}
{{ item.input }}
{{ item.output }}
{% endfor %}
{% if problem.hint %}

{{ problem.hint|safe }}

{% endif %}

{% for tag in problem.tags.all %} {{ tag.name }} {% endfor %}



{% endblock %} {% block js_block %} {% endblock %}