> For the complete documentation index, see [llms.txt](https://docs.codebattles.ru/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.codebattles.ru/ru/ustanovka/znacheniya-po-umolchaniyu.md).

# Значения по умолчанию

### Стандартные данные

{% hint style="info" %}
Для входа в систему учителя введите данные

\
Логин: admin\
Пароль: admin
{% endhint %}

{% hint style="danger" %}
СМЕНИТЕ ПАРОЛЬ СРАЗУ ПОСЛЕ НАСТРОЙКИ
{% endhint %}

### Стандартные языки программирования

Они доступны сразу после установки системы

* [x] Python
* [x] Java
* [ ] Остальное вы можете добавить сами

### Cтандартные задания для соревнований

#### Задание 1:  <mark style="color:orange;">Футбол</mark>

{% code overflow="wrap" %}

```
Петя и Вася играют в футбол. Петя забил А голов, а Вася - В голов.Ваша задача посчитать, сколько всего голов было забито в данной игре :)
```

{% endcode %}

{% code overflow="wrap" %}

```
На ввод подаются два числа на разных строках. A - число головзабитых Петей. B - Васей.

0 ≤ А ≤ 10^9
0 ≤ B ≤ 10^9

Выведите общее количество голов в игре
```

{% endcode %}

#### Задание 2: <mark style="color:orange;">Четность числа</mark> &#x20;

{% code overflow="wrap" %}

```
Маша и Даша спорят, кто больше разбирается в математике. При этом, Даша не знает почти ничего. Помогите ей выиграть спор. Ваша задача написать программу, определяющую четность числа
```

{% endcode %}

{% code overflow="wrap" %}

```
-10^6 <= N <= 10^6

Вывести "YES", если число четное. "NO" - если нечетное. (Вывод выполняется без ковычек)
```

{% endcode %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.codebattles.ru/ru/ustanovka/znacheniya-po-umolchaniyu.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
